Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1"""
2Install
3-------
5Add the desired context processor to template options. For example:
7.. code-block:: python
9 TEMPLATES = [
10 {
11 # ...
12 'OPTIONS': {
13 'context_processors': [
14 # ...
15 'superdjango.context_processors.settings_in_context',
16 # ...
17 ],
18 },
19 },
20 ]
22"""
23__author__ = "Shawn Davis <shawn@superdjango.com>"
24__maintainer__ = "Shawn Davis <shawn@superdjango.com>"
25__version__ = "0.5.0-a"
27from .library import *
29__all__ = (
30 "settings_in_context",
31)