Private
Public Access
1
0

passing url tests

This commit is contained in:
Sander Roosendaal
2019-01-12 10:56:14 +01:00
parent 909143f6b9
commit 018ee43fdb
17 changed files with 81 additions and 78 deletions

View File

@@ -110,7 +110,7 @@
<div class="grid_4 alpha">
<div class="grid_1 alpha">
<p id="header">
<a class="button gray small" href="/rowers/videos">Videos</a></p>
<a class="button gray small" href="/rowers/videos/">Videos</a></p>
</div>
<div class="grid_2">
<p id="header">
@@ -118,7 +118,7 @@
</div>
<div class="grid_1 omega">
<p id="header">
<a class="button gray small" href="/rowers/email">Contact</a>
<a class="button gray small" href="/rowers/email/">Contact</a>
</p>
</div>
<div class="grid_4 alpha">
@@ -131,9 +131,9 @@
{% if user.is_authenticated %}
<p>
{% if user.first_name %}
<a class="button gray small" href="/rowers/me/edit">{{ user.first_name }}</a>
<a class="button gray small" href="/rowers/me/edit/">{{ user.first_name }}</a>
{% else %}
<a class="button gray small" href="/rowers/me/edit">{{ user }}</a>
<a class="button gray small" href="/rowers/me/edit/">{{ user }}</a>
{% endif %}
</p>
<span class="tooltiptext">Edit user account, e.g. heart rate zones, power zones, email, teams</span>
@@ -144,7 +144,7 @@
</div>
<div class="grid_1">
{% if user.is_authenticated %}
<p><a class="button gray small" href="{% url 'logout' %}?next=/login">logout</a></p>
<p><a class="button gray small" href="{% url 'logout' %}?next=/login/">logout</a></p>
{% else %}
<p>&nbsp</p>
{% endif %}