Fix get_post_link template tag

It now generates dates in links correctly
This commit is contained in:
Gergely Polonkai 2014-06-22 15:13:04 +00:00
parent a7c649d5c1
commit d1ba92a621
1 changed files with 2 additions and 1 deletions

View File

@ -12,4 +12,5 @@ def get_post_relative_link(post):
@register.simple_tag(takes_context = True)
def get_post_link(context, post):
return context['request'].build_absolute_uri(reverse('blog:read', args=(post.created_at.year, post.created_at.month, post.created_at.day, post.slug)))
return context['request'].build_absolute_uri(get_post_relative_link(post))