mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-26 22:20:21 +00:00
23 lines
830 B
HTML
23 lines
830 B
HTML
|
{% load i18n static %}
|
|||
|
|
|||
|
<div id="user-tools">
|
|||
|
<a href="{% url 'admin:Add' %}">Add ➕</a>
|
|||
|
<a href="{% url 'Home' %}">Snapshots</a> |
|
|||
|
<a href="/admin/core/tag/">Tags</a> |
|
|||
|
<a href="/admin/core/archiveresult/?o=-1">Log</a>
|
|||
|
<a href="{% url 'Docs' %}">Docs</a> |
|
|||
|
<a href="{% url 'public-index' %}">Public</a> |
|
|||
|
<a href="/admin/">Admin</a>
|
|||
|
|
|||
|
{% block welcome-msg %}
|
|||
|
{% trans 'User' %}
|
|||
|
<strong>{% firstof user.get_short_name user.get_username %}</strong>
|
|||
|
{% endblock %}
|
|||
|
{% block userlinks %}
|
|||
|
{% if user.has_usable_password %}
|
|||
|
<a href="{% url 'admin:password_change' %}">Account</a> /
|
|||
|
{% endif %}
|
|||
|
<a href="{% url 'admin:logout' %}">{% trans 'Log out' %}</a>
|
|||
|
{% endblock %}
|
|||
|
</div>
|