summaryrefslogtreecommitdiffstats
path: root/accounts/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'accounts/templates/base.html')
-rw-r--r--accounts/templates/base.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/accounts/templates/base.html b/accounts/templates/base.html
index d6a1726..1eeda55 100644
--- a/accounts/templates/base.html
+++ b/accounts/templates/base.html
@@ -15,7 +15,7 @@
<div id="header-background">&nbsp;</div>
<header>
- <h1><a href="{{ url_for('settings') if g.user else url_for('index') }}">
+ <h1><a href="{{ url_for('default.settings') if g.user else url_for('default.index') }}">
<img src="{{ url_for('static', filename='logo.png') }}" alt="spline accounts" />
</a></h1>
<span id="roundcornerb">&nbsp;</span>
@@ -24,7 +24,7 @@
<nav id="mainnav">
<ul>
<li><a href="http://spline.de">spline.de</a></li>
- <li><a href="{{ url_for('about') }}">FAQ</a></li>
+ <li><a href="{{ url_for('default.about') }}">FAQ</a></li>
</ul>
</nav>
@@ -36,10 +36,10 @@
{%- if g.user.uid in config.get('ADMIN_USERS', []) %}
<li><a href="{{ url_for('admin.index') }}">Admin</a></li>
{%- endif %}
- <li><a href="{{ url_for('logout') }}">Abmelden</a></li>
+ <li><a href="{{ url_for('default.logout') }}">Abmelden</a></li>
{%- else %}
<li>Nicht angemeldet</li>
- <li><a href="{{ url_for('index') }}">Login</a></li>
+ <li><a href="{{ url_for('default.index') }}">Login</a></li>
{%- endif %}
</ul>
</nav>