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/templates_index.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/templates_index.html')
-rw-r--r-- | templates/web/base/admin/templates_index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/web/base/admin/templates_index.html b/templates/web/base/admin/templates_index.html index 1f45b84de..40e1be300 100644 --- a/templates/web/base/admin/templates_index.html +++ b/templates/web/base/admin/templates_index.html @@ -3,7 +3,7 @@ <ul> [% FOR body IN bodies %] <li> - <a href="/admin/templates/[% body.id %]">[% body.name %]</a> + <a href="[% c.uri_for('templates', body.id) %]">[% body.name %]</a> </li> [% END %] </ul> |