diff options
| author | Étienne Loks <etienne.loks@peacefrogs.net> | 2010-11-20 01:29:28 +0100 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2010-11-20 01:29:28 +0100 |
| commit | 8b26be646b115af7d62c85289229c15c510f971b (patch) | |
| tree | c20cf8f776b08d5ef24318574b15922a49a6e146 /chimere/main/actions.py | |
| parent | 3dbeb807a29da66717796bde667528aef423c40f (diff) | |
| download | Chimère-8b26be646b115af7d62c85289229c15c510f971b.tar.bz2 Chimère-8b26be646b115af7d62c85289229c15c510f971b.zip | |
Correct bad link on RSS page - Correct display of RSS page (refs #65)
Diffstat (limited to 'chimere/main/actions.py')
| -rw-r--r-- | chimere/main/actions.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chimere/main/actions.py b/chimere/main/actions.py index 2dba2ac..b6ee06a 100644 --- a/chimere/main/actions.py +++ b/chimere/main/actions.py @@ -34,9 +34,10 @@ actions = [(Action('view', '', _('View')), []), (Action('edit', 'edit', _('Add a new point of interest')), Action('edit_route', 'edit_route', _('Add a new route'))) ),] -if EMAIL_HOST: - actions.append((Action('contact', 'contact', _('Contact us')), []),) if 'chimere.rss' in INSTALLED_APPS: actions.append((Action('rss', 'rss', _('Feeds')), [])) +if EMAIL_HOST: + actions.append((Action('contact', 'contact', _('Contact us')), []),) + |
