diff options
Diffstat (limited to 'chimere/main/actions.py')
-rw-r--r-- | chimere/main/actions.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chimere/main/actions.py b/chimere/main/actions.py index b383bb4..3711234 100644 --- a/chimere/main/actions.py +++ b/chimere/main/actions.py @@ -32,12 +32,14 @@ class Action: actions = [(Action('view', '', _('View')), []), (Action('contribute', 'edit', _('Contribute')), (Action('edit', 'edit', _('Add a new point of interest')), - Action('edit_route', 'edit_route', _('Add a new route'))) + Action('edit_route', 'edit_route', _('Add a new route'))), ),] if 'chimere.rss' in INSTALLED_APPS: actions.append((Action('rss', 'rss', _('RSS feeds')), [])) +actions.append((Action('charte', 'charte', _('Charte')), [])) + if EMAIL_HOST: actions.append((Action('contact', 'contact', _('Contact us')), []),) |