summaryrefslogtreecommitdiffstats
path: root/hyperkitty/views/list.py
diff options
context:
space:
mode:
authorAurélien Bompard <aurelien@bompard.org>2013-02-13 11:44:12 +0100
committerAurélien Bompard <aurelien@bompard.org>2013-02-13 11:44:12 +0100
commit5e48bd4369200669821e67b2d3ca8eb4ea36faeb (patch)
tree22eba360ab0f2ad5123c4337a51dc106c32f0e9d /hyperkitty/views/list.py
parent0a1f8de9b4537f0e0d67e694ff8746003e20f3c8 (diff)
downloadhyperkitty-5e48bd4369200669821e67b2d3ca8eb4ea36faeb.tar.gz
hyperkitty-5e48bd4369200669821e67b2d3ca8eb4ea36faeb.tar.xz
hyperkitty-5e48bd4369200669821e67b2d3ca8eb4ea36faeb.zip
Use context processors to export settings
Diffstat (limited to 'hyperkitty/views/list.py')
-rw-r--r--hyperkitty/views/list.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/hyperkitty/views/list.py b/hyperkitty/views/list.py
index c8439ef..de3d622 100644
--- a/hyperkitty/views/list.py
+++ b/hyperkitty/views/list.py
@@ -148,7 +148,6 @@ def _thread_list(request, mlist, threads, template_name='thread_list.html', extr
'participants': len(participants),
'months_list': get_months(store, mlist.name),
'flash_msg': flash_msg,
- 'use_mockups': settings.USE_MOCKUPS,
}
context.update(extra_context)
return render_to_response(template_name, context,
@@ -231,7 +230,6 @@ def overview(request, mlist_fqdn=None):
'months_list': get_months(store, mlist.name),
'evolution': evolution,
'days': days,
- 'use_mockups': settings.USE_MOCKUPS,
})
return HttpResponse(t.render(c))