Commit | Line | Data |
---|---|---|
e7db286c | 1 | {% extends "admin/change_form.html" %} |
66386d77 PP |
2 | {% load i18n %} |
3 | ||
4 | {% block object-tools %} | |
5 | {% if change %} | |
6 | {% if not is_popup %} | |
7 | <ul class="object-tools"> | |
8 | <li><a href="../../chercheur/export?type=csv&id={{ object_id }}">Exporter chercheurs CSV</a></li> | |
9 | <li><a href="../../chercheur/export?type=ods&id={{ object_id }}">Exporter chercheurs ODS</a></li> | |
10 | <li><a href="history/" class="historylink">{% trans "History" %}</a></li> | |
11 | {% if has_absolute_url %}<li><a href="../../../r/{{ content_type_id }}/{{ object_id }}/" class="viewsitelink">{% trans "View on site" %}</a></li>{% endif%} | |
12 | </ul> | |
13 | {% endif %} | |
14 | {% endif %} | |
15 | {% endblock %} | |
e7db286c PP |
16 | |
17 | {% block after_related_objects %} | |
18 | ||
19 | {% if original.membres_actif %} | |
20 | Membres acceptés: | |
21 | <ul> | |
22 | {% for membre in original.membres_actif.all %} | |
23 | <li>{{ membre.chercheur }}</li> | |
24 | {% endfor %} | |
25 | </ul> | |
26 | {% endif %} | |
27 | {% endblock %} |