Export results to csv
[edumed.git] / wtem / templates / admin / wtem / submission / change_list.html
1 {% extends "admin/change_list.html" %}
2 {% load i18n %}
3 {% load admin_urls %}
4
5
6 {% block object-tools-items %}
7     {{block.super}}
8     <li>
9         <a href="{% url 'admin:wtem_admin_report' %}">
10             Wyniki w CSV
11         </a>
12     </li>
13 {% endblock %}
14
15 {% block result_list %}
16     {% if examiners %}
17         <p>
18         {% for examiner in examiners %}
19             {{examiner.name}}: {{examiner.todo}} {% if not forloop.last %}, {% endif %}
20         {% endfor %}
21     </p>
22     {% endif %}
23     {{block.super}}
24 {% endblock %}