1
0
Bifurcation 0
aemo_fr/templates/partial_table_documents.html
2024-06-03 16:49:01 +02:00

31 lignes
1,1 Kio
HTML
Brut Annotations Historique

Ce fichier contient des caractères Unicode invisibles.

Ce fichier contient des caractères Unicode invisibles à l'œil nu, mais peuvent être traités différemment par un ordinateur. Si vous pensez que c'est intentionnel, vous pouvez ignorer cet avertissement. Utilisez le bouton Échappe pour les dévoiler.

<table class="table table-sm table-borderless mb-3">
<tr>
<th class="left-label">Documents
{% if famille|can_edit:user %}
<span>
<a href="{% url 'famille-doc-upload' famille.pk %}"
class="btn btn-sm btn-mini btn-primary"
role="button "
title="Ajouter un document">+</a>
</span>
{% endif %}
</th>
<td colspan="4">
<div>
{% for doc in famille.documents.all %}
<a href="{{ doc.fichier.url }}">{{ doc.titre }}</a>
{% if famille|can_edit:user %}
<span class="hoverimage">
<button type="submit" class="btn confirm"
formaction="{% url 'famille-doc-delete' famille.pk doc.pk %}"
title="Supprimer ce document"
data-confirm="Voulez-vous vraiment supprimer ce document ?">
<img src="{% static 'admin/img/icon-deletelink.svg' %}">
</button>
</span>
{% endif %}
{% endfor %}
</div>
</td>
</tr>
</table>