mirror of
https://gitlab.crans.org/mediatek/med.git
synced 2025-04-26 06:12:42 +00:00
25 lines
568 B
HTML
25 lines
568 B
HTML
{% comment %}
|
|
SPDX-License-Identifier: GPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% if medias_list.paginator %}
|
|
{% include "pagination.html" with list=medias_list %}
|
|
{% endif %}
|
|
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Titre</th>
|
|
<th>Auteur</th>
|
|
<th>Cote</th>
|
|
</tr>
|
|
</thead>
|
|
{% for media in medias_list %}
|
|
<tr>
|
|
<td>{{ media.titre }}</td>
|
|
<td>{% for aut in media.auteur.all %}{{ aut }}, {% endfor %}</td>
|
|
<td>{{ media.cote }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|