Projet

Général

Profil

0001-settings-define-portal-user-agent-combo-templates-94.patch

Frédéric Péters, 04 janvier 2016 10:36

Télécharger (1001 octets)

Voir les différences:

Subject: [PATCH] settings: define portal-{user,agent} combo templates (#9444)

 hobo/settings.py | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)
hobo/settings.py
148 148
#                ('export-auquo.wcs', u'Au quotidien'),
149 149
#                ('export-demo.wcs', u'Au quotidien Demo')],
150 150
#    }
151
SERVICE_TEMPLATES = None
151
SERVICE_TEMPLATES = {
152
    'combo': [('', ''),
153
        ('portal-user', _('User Portal')),
154
        ('portal-agent', _('Agent Portal')),
155
    ]
156
}
152 157

  
153 158
# SERVICE_EXTRA_VARIABLES: variables to create automatically for the
154 159
# given service types; they can be simple strings, or a dictionary with
155
-