mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2026-05-13 04:45:14 +01:00
17 lines
782 B
HTML
17 lines
782 B
HTML
<div id="editLinks"> {% block loginInfo %}
|
|
{% if settings.DEVSERVER %}<b style="color:red; font-size:x-large">RUNNING ON LOCALSERVER</b> {% endif %}
|
|
<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/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> |