Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialNathan Magyar
11,332 PointsQ Object for created_at
When I run the following code, I get an error asking me if I'm using a Q object on the created_at attribute of a review in the product_detail
view, which I think I'm doing. What am I missing?
Thanks for the help!
import datetime
from django.db.models import Q
from django.shortcuts import render, get_object_or_404
from . import models
def good_reviews(request):
reviews = models.Review.objects.filter(rating__gte=3)
return render(request, 'products/reviews.html', {'reviews': reviews})
def recent_reviews(request):
six_months_ago = datetime.datetime.today() - datetime.timedelta(days=180)
reviews = models.Review.objects.exclude(created_at__lt=six_months_ago)
return render(request, 'products/reviews.html', {'reviews': reviews})
def product_detail(request, pk):
product = get_object_or_404(models.Product, pk=pk)
four_weeks_ago = datetime.datetime.today() - datetime.timedelta(weeks=4)
reviews = product.review_set.filter(
Q(rating__gte=8)|Q(created_at__lt=four_weeks_ago)
).order_by('-created_at').all()
return render(request, 'products/product_detail.html', {'product': product, 'reviews': reviews})
1 Answer
KRIS NIKOLAISEN
54,971 PointsSee the answer provided here
Nathan Magyar
11,332 PointsNathan Magyar
11,332 PointsThanks Kris!