zoo/zoo/zoo_nanterre/templates/admin/index.html

37 lines
899 B
HTML

{% extends "admin/index.html" %}
{% block content %}
<div id="content-main">
{% include "admin/app_list.html" with app_list=app_list show_changelinks=True %}
<div class="module">
<table>
<caption>
Actions globales
</caption>
{% if perms.zoo_data.action1_entity %}
<tr>
<th scope="row">
<a href="{% url "admin:synchronize-federations" %}">
Synchroniser les fédérations
</a>
</th>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
{% endif %}
{% if perms.zoo_data.action2_entity %}
<tr>
<th scope="row">
<a href="{% url "admin:inactive-index" %}">
Fiches inactives
</a>
</th>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
{% endif %}
</table>
</div>
</div>
{% endblock %}