diff options
author | Alexander Sulfrian <alexander@sulfrian.net> | 2016-01-22 19:06:47 +0100 |
---|---|---|
committer | Alexander Sulfrian <alexander@sulfrian.net> | 2016-01-25 01:56:06 +0100 |
commit | 1ea5dd06424a2a2fb60692513d59591187389021 (patch) | |
tree | fe8ebd20ced49d8b8f7c1d94ed0ba2c8d29f5198 /templates/base.html | |
parent | 5fde298d4b705bd256d5510493955ca98a31acdc (diff) | |
download | web-1ea5dd06424a2a2fb60692513d59591187389021.tar.gz web-1ea5dd06424a2a2fb60692513d59591187389021.tar.bz2 web-1ea5dd06424a2a2fb60692513d59591187389021.zip |
Move admin interface into a blueprint
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/base.html b/templates/base.html index 4123d7f..d6a1726 100644 --- a/templates/base.html +++ b/templates/base.html @@ -34,7 +34,7 @@ {%- if g.user %} <li>Angemeldet als <strong>{{ g.user.uid }}</strong></li> {%- if g.user.uid in config.get('ADMIN_USERS', []) %} - <li><a href="{{ url_for('admin') }}">Admin</a></li> + <li><a href="{{ url_for('admin.index') }}">Admin</a></li> {%- endif %} <li><a href="{{ url_for('logout') }}">Abmelden</a></li> {%- else %} |