add MEDIA_URL variable in templatetags, so that pagination template can use images
authortzangms <tzangms@streetvoice.com>
Wed, 29 Jul 2009 03:23:59 +0000 (11:23 +0800)
committertzangms <tzangms@streetvoice.com>
Wed, 29 Jul 2009 03:23:59 +0000 (11:23 +0800)
pagination/templatetags/pagination_tags.py

index 90d26de..3733434 100644 (file)
@@ -199,6 +199,7 @@ def paginate(context, window=DEFAULT_WINDOW):
             differenced.sort()
             pages.extend(differenced)
         to_return = {
+            'MEDIA_URL': settings.MEDIA_URL,
             'pages': pages,
             'page_obj': page_obj,
             'paginator': paginator,