diff options
author | Dave Arter <davea@mysociety.org> | 2016-09-21 13:44:22 +0100 |
---|---|---|
committer | Dave Arter <davea@mysociety.org> | 2016-09-23 10:52:46 +0100 |
commit | 78b34d4543c1c3808851351a9f083789a99c72c9 (patch) | |
tree | dcb549d79d15cf8ddb57b7755c011b3d16921ae6 /templates/web/base/admin/navigation.html | |
parent | cb1d47760c9b5c879211474d4ec40735a87df57e (diff) |
Some minor admin fixes
- Superusers couldn't view response priorities due to invalid $c->forward call
- Navigation to other areas of admin was broken on response priority admin pages
Diffstat (limited to 'templates/web/base/admin/navigation.html')
-rw-r--r-- | templates/web/base/admin/navigation.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/web/base/admin/navigation.html b/templates/web/base/admin/navigation.html index 895589822..e021ba81b 100644 --- a/templates/web/base/admin/navigation.html +++ b/templates/web/base/admin/navigation.html @@ -2,7 +2,7 @@ <p> <strong>[% tprintf(loc('%s admin:', "%s here is the site name"), site_name) %]</strong> [%- FOREACH link IN allowed_links %] - <a href="[% c.uri_for( link ) %]">[% allowed_pages.$link.0 %]</a> + <a href="[% c.uri_for( '/admin/' _ link ) %]">[% allowed_pages.$link.0 %]</a> [% IF NOT loop.last %]|[% END %] [% END %] </p> |