# HG changeset patch # User Brian Neal # Date 1252818112 0 # Node ID 806399f3b9504efb8f53fd7966d8d47bbfb78907 # Parent 4c33e266db03351049cce0aeadc22bc4c7658fbb Forums: minor cosmetic tweaks mainly. diff -r 4c33e266db03 -r 806399f3b950 gpp/forums/templatetags/forum_tags.py --- a/gpp/forums/templatetags/forum_tags.py Sun Sep 13 04:33:15 2009 +0000 +++ b/gpp/forums/templatetags/forum_tags.py Sun Sep 13 05:01:52 2009 +0000 @@ -7,8 +7,11 @@ @register.inclusion_tag('forums/last_post_info.html') -def last_post_info(post): - return {'post': post} +def last_post_info(post, media_url): + return { + 'post': post, + 'MEDIA_URL': media_url, + } @register.inclusion_tag('forums/pagination.html') diff -r 4c33e266db03 -r 806399f3b950 gpp/templates/base.html --- a/gpp/templates/base.html Sun Sep 13 04:33:15 2009 +0000 +++ b/gpp/templates/base.html Sun Sep 13 05:01:52 2009 +0000 @@ -38,6 +38,7 @@