2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2025-02-17 20:50:13 +00:00
troggle/templates/menu.html

74 lines
2.7 KiB
HTML
Raw Permalink Normal View History

{% if not homepage %}
{% if year %}
{% firstof year as current_year %}
{% else %}
{% now "Y" as current_year %} <!-- the year now -->
{% endif %}
<div id="menu">
<ul id="menulinks">
<li><a href="/index.htm">Home</a></li>
<li><a href="/handbook/index.htm">Handbook</a>
{% if handbook %}
<ul>
<li><a href="/handbook/rig/rigit.html">Rigging guide</a></li>
<li><a href="/handbook/survey/index.htm">Surveying guide</a></li>
<li><a href="/handbook/look4.htm">Prospecting guide</a></li>
<li><a href="/handbook/rescue.htm">Rescue guide</a></li>
2022-08-16 15:28:27 +03:00
<li><a href="/handbook/essentials.html">GPS guide</a></li>
</ul>
{% endif%}</li>
2021-03-31 16:14:36 +01:00
<li><a href="/handbook/computing/onlinesystems.html">Online systems</a></li>
2024-07-09 14:46:42 +02:00
<li><a href="/handbook/logbooks.html#form">Make Logbook Entry</a></li>
2022-06-24 19:28:31 +01:00
<li><a href="/caves">Caves</a>
{% if parent_caves %}
<ul>
{% for parent_cave in parent_caves %}
<li><a href="/{{ parent_cave.url }}">
{% if parent_cave.kataster_number %}
{{ parent_cave.kataster_number }} {{parent_cave.official_name|safe}}</a>
{% if parent_cave.unofficial_number %}
({{parent_cave.unofficial_number }})
{% endif %}
{% else %}
{{parent_cave.unofficial_number }} {{parent_cave.official_name|safe}}</a>
{% endif %}</li>
2023-02-09 20:54:55 +00:00
{% if parent_cave.kataster_number == "161" %}
2022-06-24 19:28:31 +01:00
<li><a href="/1623/161/names.htm">KH Glossary</a></li>
2023-02-09 20:54:55 +00:00
{% endif %}
2022-06-24 19:28:31 +01:00
{% endfor %}
</ul>
{% endif%}</li>
2022-05-19 15:58:54 +03:00
<li><a href="/infodx.htm">Site index</a></li>
<li><a href="/pubs.htm">Reports</a></li>
2022-06-24 21:58:00 +01:00
{% if year %}
<ul><li><a href="/years/{{current_year}}">{{ year }}</a></li></ul>
2022-06-24 21:58:00 +01:00
{% endif %}
2025-02-09 14:16:08 +00:00
{% if settings.DEVSERVER %}
2025-02-09 14:30:39 +00:00
<li><a href="https://expo.survex.com/kanboard/board/2">Kanboard</a></li>
2025-02-09 14:16:08 +00:00
{% else %}
2025-02-09 14:30:39 +00:00
<li><a href="/kanboard/board/2">Kanboard</a></li>
2025-02-09 14:16:08 +00:00
{% endif %}
<li><a href="/handbook/troggle/training/trogbegin.html">Troggle</a></li>
2024-03-05 23:42:23 +00:00
2025-02-09 14:16:08 +00:00
<li><form name=P method=get
{% if settings.DEVSERVER %}
action="https://expo.survex.com/search"
{% else %}
action="/search"
{% endif %}
target="_top">
<input id="omega-autofocus" type=search name=P size=8 autofocus>
<input type=submit value="Search"></form></li>
2025-02-09 14:16:08 +00:00
{% if editable %}<li><a href="{% if local %}https://expo.survex.com{% endif %}{% url "editexpopage" path %}" class="editlink"><strong>Edit this page</strong></a></li>{% endif %}
{% if cave_editable %}<li><a href="{% if local %}https://expo.survex.com{% endif %}{% url "edit_cave" cave.url_parent cave.slug %}" class="editlink"><strong>Edit this cave</strong></a></li>{% endif %}
2024-06-29 08:55:14 +03:00
<li> {% if settings.DEVSERVER %}<b style="color:red">RUNNING ON LOCALSERVER</b> <br>slug:{{ cave.slug }}<br>newslug:{{ cave.newslug }}<br>url:{{ cave.url }}{% endif %}
</ul>
</div>
{% endif %}
2024-06-29 08:55:14 +03:00