diff options
author | Sam Wenham <sam@wenhams.co.uk> | 2019-02-24 13:03:34 +0000 |
---|---|---|
committer | Sam Wenham <sam@wenhams.co.uk> | 2019-02-24 13:03:34 +0000 |
commit | 8f66837f6fb5b74ba3166ae6e31328f8a9e68d96 (patch) | |
tree | f5683df0d04d8decad0685198e6e76980e376ef0 /templates/base.html | |
parent | 670559ec8722d8f2f5c97e93bbed1f610cc67206 (diff) | |
download | troggle-8f66837f6fb5b74ba3166ae6e31328f8a9e68d96.tar.gz troggle-8f66837f6fb5b74ba3166ae6e31328f8a9e68d96.tar.bz2 troggle-8f66837f6fb5b74ba3166ae6e31328f8a9e68d96.zip |
Make things more compatiable with newer python
Fix the expeditions list
Improvements to make it compatiable with django 1.8
Bump the years to add 2018
Update the .hgignore file to ignore junk
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/base.html b/templates/base.html index 20a22ef..372a251 100644 --- a/templates/base.html +++ b/templates/base.html @@ -16,7 +16,7 @@ <body onLoad="contentHeight();"> <div id="header"> - <h1>CUCC Expeditions to Austria: 1976 - 2016</h1> + <h1>CUCC Expeditions to Austria: 1976 - 2018</h1> <div id="editLinks"> {% block loginInfo %} <a href="{{settings.EXPOWEB_URL}}">Website home</a> | {% if user.username %} @@ -40,9 +40,9 @@ <a href="{% url "survexcavessingle" 204 %}">204</a> | <a href="{% url "survexcavessingle" 258 %}">258</a> | <a href="{% url "survexcavessingle" 264 %}">264</a> | - <a href="{% url "expedition" 2015 %}">Expo2015</a> | <a href="{% url "expedition" 2016 %}">Expo2016</a> | <a href="{% url "expedition" 2017 %}">Expo2017</a> | + <a href="{% url "expedition" 2018 %}">Expo2018</a> | <a href="/admin/">Django admin</a> </div> @@ -90,7 +90,7 @@ <li><a id="caversLink" href="{% url "personindex" %}">cavers</a></li> <li><a href="#">expeditions</a> <ul class="sub_menu"> - <li><a id="expeditionsLink" href="{{ Expedition.objects.latest.get_absolute_url }}">newest</a></li> + <li><a id="expeditionsLink" href="{{ expedition.objects.latest.get_absolute_url }}">newest</a></li> <li><a id="expeditionsLink" href="{% url "expeditions" %}">list all</a></li> </ul> </li> |