amélioration de l'affichage des imports

This commit is contained in:
Jean-Marie Favreau 2024-02-17 19:03:08 +01:00
parent b5d5b1c245
commit cb818e3081
1 changed files with 2 additions and 3 deletions

View File

@ -22,7 +22,6 @@
<th>Id</th>
<th>Nom</th>
<th>Récurrence</th>
<th>Source</th>
<th>Nombre d'imports</th>
<th>Actions</th>
</tr>
@ -32,13 +31,13 @@
<tr>
<td>{{ obj.pk }}</a></td>
<td>{{ obj.name }}</a></td>
<td>{{ obj.recurrence }}</td>
<td><a href="{{ obj.source }}">{{ obj.source|truncatechars_middle:32 }}</a></td>
<td>{{ obj.get_recurrence_display }}</td>
<td>{{ obj.nb_imports }}</td>
<td>
<div class="buttons">
<a href="{% url 'run_rimport' obj.pk %}" role="button">Exécuter</a>
<a href="{% url 'view_rimport' obj.pk %}" role="button">Consulter</a>
<a href="{% url 'edit_rimport' obj.pk %}" role="button">Modifier</a>
</div>
</td>
</tr>