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.
14 lines
624 B
14 lines
624 B
{% extends "admin/change_form.html" %}
|
|
{% load i18n reporting_tags %}
|
|
|
|
{% block object-tools %}
|
|
{% if change %}{% if not is_popup %}
|
|
<ul class="object-tools">
|
|
<li><a href="report_complete/">Relatório</a></li>
|
|
<li><a href="labels/">Etiqueta</a></li>
|
|
<li><a href="labels_sem_presidente/">Etiqueta sem presidente</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 %}
|
|
|