Changeset - 103ffefc87fa
[Not reviewed]
0 1 0
Bradley Kuhn (bkuhn) - 9 years ago 2015-03-04 23:17:31
bkuhn@ebb.org
Correct variables for setting.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
www/conservancy/apps/blog/views.py
Show inline comments
...
 
@@ -79,13 +79,13 @@ def custom_index(request, queryset, *args, **kwargs):
 
    except EmptyPage:
 
        # If page is out of range (e.g. 9999), deliver last page of results.
 
        blog_entires = paginator.page(paginator.num_pages)
 

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

	
 
    callable = BlogListView.as_view(**kwargs)
 
    return callable(request)
 

	
 
def techblog_redirect(request):
 
    """Redirect from the old 'techblog' to the new blog
0 comments (0 inline, 0 general)