Merge remote-tracking branch 'upstream/master'

This commit is contained in:
Tomislav R 2016-04-09 01:02:08 +02:00
commit 031ce0b5f3
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ def contact(request):
def blog(request):
tags = ["digitalglarus"]
posts = Post.objects.filter_by_language(get_language()).filter(tags__name__in=tags).filter(slug=slug)
posts = Post.objects.filter_by_language(get_language()).filter(tags__name__in=tags)
context = {
'post_list': posts,
}