0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-12-01 11:41:20 +01:00

Remove redundant filter() in tutorial example. Fixes #3280

Thanks to @gogobook for the report!
This commit is contained in:
Matt Westcott 2017-01-19 17:39:28 +00:00
parent 4f1d3509ff
commit cbb31c80e1

View File

@ -644,7 +644,7 @@ will get you a 404, since we haven't yet defined a "tags" view. Add to ``models.
# Filter by tag # Filter by tag
tag = request.GET.get('tag') tag = request.GET.get('tag')
blogpages = BlogPage.objects.filter().filter(tags__name=tag) blogpages = BlogPage.objects.filter(tags__name=tag)
# Update template context # Update template context
context = super(BlogTagIndexPage, self).get_context(request) context = super(BlogTagIndexPage, self).get_context(request)