Changeset - 8e6c2e54acab
[Not reviewed]
0 1 0
Bradley Kuhn (bkuhn) - 9 years ago 2015-03-04 23:18:18
bkuhn@ebb.org
date_list should come from the extra_context too.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
www/conservancy/apps/blog/views.py
Show inline comments
...
 
@@ -81,7 +81,7 @@ def custom_index(request, queryset, *args, **kwargs):
 
        blog_entires = paginator.page(paginator.num_pages)
 

	
 
    return render_to_response('blog/entry_list.html',
 
                              {"blog_entries": blog_entries, "date_list" : date_list,
 
                              {"blog_entries": blog_entries, "date_list" : extra_context['date_list'],
 
                               "authors" : extra_context['authors'], "tags" : extra_context['tags'] })
 

	
 
    callable = BlogListView.as_view(**kwargs)
0 comments (0 inline, 0 general)