diff options
author | 2018-05-19 20:23:42 +0100 | |
---|---|---|
committer | 2018-05-19 20:23:42 +0100 | |
commit | d43ce053f053d2cc663575bcaf9136d6c0c6eec1 (patch) | |
tree | 680f2088c698452f27add43cef296e26d317d9ff /templates/main/navigation.html | |
parent | Jammer profiles (diff) |
Update nav/privacy policy
Diffstat (limited to 'templates/main/navigation.html')
-rw-r--r-- | templates/main/navigation.html | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/templates/main/navigation.html b/templates/main/navigation.html index 4e2ed369..3130747b 100644 --- a/templates/main/navigation.html +++ b/templates/main/navigation.html @@ -102,9 +102,15 @@ {% endif %} {% if current_page == "main.jams.index" %} - <li class="uk-active"><a href="{{ url_for('main.jams.index') }}">Info</a></li> + <li class="uk-active"><a href="{{ url_for('main.jams.index') }}">All Jams</a></li> {% else %} - <li><a href="{{ url_for('main.jams.index') }}">Info</a></li> + <li><a href="{{ url_for('main.jams.index') }}">All Jams</a></li> + {% endif %} + + {% if current_page == "main.jams.profile" %} + <li class="uk-active"><a href="{{ url_for('main.jams.profile') }}">My Profile</a></li> + {% else %} + <li><a href="{{ url_for('main.jams.profile') }}">My Profile</a></li> {% endif %} <li class="uk-nav-divider"></li> |