1 {% extends
"base.html" %}
2 {% load i18n admin_static admin_list %}
3 {% load url from future %}
8 <link rel=
"stylesheet" type=
"text/css" href=
"{% static "admin/css/changelists.css
" %}" />
10 <link rel=
"stylesheet" type=
"text/css" href=
"{% static "admin/css/forms.css
" %}" />
12 {% if cl.formset or action_form %}
13 {% url 'admin:jsi18n' as jsi18nurl %}
14 <script type=
"text/javascript" src=
"{{ jsi18nurl|default:'../../jsi18n/' }}"></script>
17 {% if not actions_on_top and not actions_on_bottom %}
19 #changelist table thead th:first-child {width: inherit}
27 {% if action_form %}{% if actions_on_top or actions_on_bottom %}
28 <script type=
"text/javascript">
30 $(document).ready(function($) {
31 $(
"tr input.action-select").actions();
35 {% endif %}{% endif %}
38 {% block bodyclass %}change-list{% endblock %}
41 {% block breadcrumbs %}
42 <div class=
"breadcrumbs">
43 <a href=
"{% url 'admin:index' %}">{% trans 'Home' %}
</a>
44 › <a href=
"{% url 'admin:app_list' app_label=cl.opts.app_label %}">{{ app_label|capfirst|escape }}
</a>
45 › {{ cl.opts.verbose_name_plural|capfirst }}
50 {% block coltype %}flex{% endblock %}
52 {% block content_title %}
<h1>Liste des étudiants
</h1>{% endblock %}
55 <div id=
"content-main">
56 {% block object-tools %}
57 {% if has_add_permission %}
58 <ul class=
"object-tools">
59 {% block object-tools-items %}
61 <a href=
"{% url cl.opts|admin_urlname:'add' %}{% if is_popup %}?_popup=1{% endif %}" class=
"addlink">
62 {% blocktrans with cl.opts.verbose_name as name %}Add {{ name }}{% endblocktrans %}
69 {% if cl.formset.errors %}
71 {% blocktrans count cl.formset.errors|length as counter %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %}
73 {{ cl.formset.non_form_errors }}
75 <div class=
"module{% if cl.has_filters %} filtered{% endif %}" id=
"changelist">
76 {% block search %}{% search_form cl %}{% endblock %}
77 {% block date_hierarchy %}{% date_hierarchy cl %}{% endblock %}
80 {% if cl.has_filters %}
81 <div id=
"changelist-filter">
82 <h2>{% trans 'Filter' %}
</h2>
83 {% for spec in cl.filter_specs %}{% admin_list_filter cl spec %}{% endfor %}
88 <form id=
"changelist-form" action=
"" method=
"post"{% if cl.formset.is_multipart %}
enctype=
"multipart/form-data"{% endif %}
>{% csrf_token %}
90 <div>{{ cl.formset.management_form }}
</div>
93 {% block result_list %}
96 {% block pagination %}{% pagination cl %}{% endblock %}