]> git.0d.be Git - django-panik-combo.git/blob - panikombo/misc.py
rename template used for the about section
[django-panik-combo.git] / panikombo / misc.py
1 # coding: utf-8
2 import collections
3
4 COMBO_PUBLIC_TEMPLATES = collections.OrderedDict({
5     'standard': {
6         'name': 'Section « À propos »',
7         'template': 'combo/page_template_about.html',
8         'placeholders': {
9             'content': {
10                 'name': 'Contenu',
11             },
12         }
13     },
14     'fullwidth': {
15         'name': 'Page normale',
16         'template': 'combo/page_template_full_width.html',
17         'placeholders': {
18             'content': {
19                 'name': 'Contenu',
20             },
21         }
22     },
23     'sidebar': {
24         'name': 'Page normale avec barre latérale',
25         'template': 'combo/page_template_sidebar.html',
26         'placeholders': {
27             'content': {
28                 'name': 'Contenu',
29             },
30             'sidebar': {
31                 'name': 'Barre latérale',
32             },
33         }
34     },
35 })