Fix typo in blog listing

This commit is contained in:
Gergely Polonkai 2014-06-14 20:50:07 +00:00
parent 3dc0f26179
commit eca33eb582
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ def listing(request, tag, page):
view = "index"
else:
post_list = Post.objects.filter(tags__slug = tag, draft = False)
view = "tagage"
view = "tag"
paginator = Paginator(post_list.order_by('-created_at'), 10)