diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2025-01-28 15:38:37 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2025-01-28 15:38:37 +0000 |
commit | 11cf61b0a340ff102e843655a7c408f0a4e3c16f (patch) | |
tree | c01f532abd7065d43678999e63f0f836e51efee1 /templates/base.html | |
parent | bac65b58972ea6143d6e6a53e4d12543c8dd1c84 (diff) | |
download | troggle-11cf61b0a340ff102e843655a7c408f0a4e3c16f.tar.gz troggle-11cf61b0a340ff102e843655a7c408f0a4e3c16f.tar.bz2 troggle-11cf61b0a340ff102e843655a7c408f0a4e3c16f.zip |
Put troggle reports menu on troggle handbook pages
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 45 |
1 files changed, 10 insertions, 35 deletions
diff --git a/templates/base.html b/templates/base.html index 6434d1d..27a78df 100644 --- a/templates/base.html +++ b/templates/base.html @@ -25,46 +25,20 @@ <a href="/">Home</a> | <a id="cuccLink" href="http://camcaving.uk/">CUCC</a> | <a id="expoWebsiteLink" href="http://expo.survex.com">expo.survex</a> | - <a id="handbook" href="/handbook/computing/onlinesystems.html">Handbook</a> | - {% if user.username %}User:{{ user.username }} - {% if user.person %}(<a href="{{ user.person.get_absolute_url }}">{{ user.person }}</a>){% endif %} - | <a href='/accounts/logout/'>Log out</a> {% else %} <a href='/accounts/register/'>Register</a> | <a href='/accounts/login/'>Log in</a> {% endif %} + <a id="handbook" href="/handbook/index.htm">Handbook</a> | + {% if user.person %}User:(<a href="{{ user.person.get_absolute_url }}">{{ user.person }}</a>) + | <a href='/accounts/logout/'>Log out</a> + {% elif user.username %}User:{{ user.username }} + | <a href='/accounts/logout/'>Log out</a> + {% else %} + | <a href='/accounts/login/'>Log in</a> + {% endif %} + | <a href='/accounts/register/'>Register</a> {% endblock%} </div> </div> -{% if settings.DEVSERVER %} -<div class="toolbarlinkslocal"> -{% else %} -<div class="toolbarlinks"> -{% endif %} - <a href="/logbookedit/">Logbook Entry</a> | - <!--<a href="/1626/359/359.html">359 (HC)</a> |--> - <a id="cavesLink" href="/caves">Caves</a> | - <a id="qmsLink" href="{% url "caveQMs" "1623-290" %}">QMs</a> | - <a href="/survexfile/">Survex</a> | - <a href="{% url "survexcaveslist" %}">All Survex</a> | - <a href="{% url "allscans" %}">Scans</a> | - <a href="{% url "walletedit" %}">Upload Scans</a> | - <a href="{% url "dwgallfiles" %}">Drawings</a> | - <a href="{% url "dwgupload" %}">Upload Drawings</a> | - <a href="{% url "photoupload" %}">Upload Photos</a> | - <a href="{% url "gpxupload" %}">Upload GPX</a> | - <br> - - <a href="{% url "dataissues" %}">Data Issues</a> | - <a href="/handbook/computing/todo-data.html">tasks to do </a> | - <a id="entsLink" href="{% url "entranceindex" %}">ents</a> | - <a id="folklink" href="/folk">expoers</a> | - <a id="caversLink" href="{% url "notablepersons" %}">survey lengths</a> | - <a href="{% url "stats" %}">statistics</a> | - <a href="/survexfilewild/{{current_year}}">Wild Survex({{current_year}})</a> | - <a href="/wallets/year/{{current_year}}">Wallets({{current_year}})</a> | - <a href="{% url "expedition" current_year %}">Expo({{current_year}})</a> | - <a href="{% url "controlpanel" %}">Control panel</a> | - -</div> <div id="nav"> {% block nav %} @@ -81,6 +55,7 @@ {% block related %} {% endblock %} </div> + {% include 'troggletoolbar.html' %} {% block content %} REPLACE : The content {% endblock %} |