13 lines
493 B
HTML
13 lines
493 B
HTML
{% extends "admin/change_form.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block object-tools %}
|
|
{% if change %}{% if not is_popup %}
|
|
<ul class="object-tools">
|
|
<li><a href="reminder/">Update Authorized List Reminder</a></li>
|
|
<li><a href="history/" class="historylink">{% trans "History" %}</a></li>
|
|
{% if has_absolute_url %}<li><a href="../../../r/{{ content_type_id }}/{{ object_id }}/" class="viewsitelink">{% trans "View on site" %}</a></li>{% endif%}
|
|
</ul>
|
|
{% endif %}{% endif %}
|
|
{% endblock %}
|