Don't pass base to the comment preview template.
authorMatthijs Kooijman <matthijs@stdin.nl>
Fri, 31 Oct 2008 16:51:49 +0000 (17:51 +0100)
committerMatthijs Kooijman <matthijs@stdin.nl>
Fri, 31 Oct 2008 16:51:49 +0000 (17:51 +0100)
This parameter was added to support embedding previews in the admin as
well, but we'll just keep previews in the frontend for now.

influences/views.py
templates/influences/influence_comment_preview.html

index fe062d553edfd64f56ca59e8a71c2366fec60f7f..35ee02ef921227f8faf626fb355ad031c8422440 100644 (file)
@@ -92,8 +92,6 @@ def influence_list(request):
 def influence_comment_preview(request, context_processors, extra_context, **kwargs):
     # Use a custom template
     kwargs['template'] = 'influences/influence_comment_preview.html'
-    # The base template to extend
-    extra_context['base'] = "influences/influence_detail.html"
     # The object to be show in the influence detail
     extra_context['object'] = get_object_or_404(Influence, pk=kwargs['object_id'])
     return _preview(request, context_processors, extra_context, **kwargs)
index 53ef495ee984c3297c7f6e06aaef0d4469f140c4..f0f04bac55ad91b90f24ad2635e3521d90a36195 100644 (file)
@@ -1,4 +1,4 @@
-{% extends base %}
+{% extends "influences/influence_detail.html" %}
 
 {% load threadedcommentstags %}