mirror of https://github.com/interlegis/sigi.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
582 B
18 lines
582 B
{% load i18n admin_urls %}
|
|
{% block object-tools-items %}
|
|
<li>
|
|
{% url opts|admin_urlname:'history' original.pk|admin_urlquote as history_url %}
|
|
<a href="{% add_preserved_filters history_url %}" class="historylink">
|
|
<i class="left material-icons" aria-hidden="true">history</i>
|
|
{% trans "History" %}
|
|
</a>
|
|
</li>
|
|
{% if has_absolute_url %}
|
|
<li>
|
|
<a href="{{ absolute_url }}" class="viewsitelink">
|
|
<i class="left material-icons" aria-hidden="true">web</i>
|
|
{% trans "View on site" %}
|
|
</a>
|
|
</li>
|
|
{% endif %}
|
|
{% endblock %}
|