beesgospel/templates/membres/chant_edit.html

29 lines
1.2 KiB
HTML
Raw Normal View History

2025-10-19 17:59:46 +02:00
{% extends "base.html" %}
{% block content %}
<h2>Édition/ajout de chant</h2>
2025-10-19 19:43:37 +02:00
<form method="post" enctype="multipart/form-data">{% csrf_token %}
2025-10-19 17:59:46 +02:00
{{ form.as_div }}
2025-10-19 19:43:37 +02:00
{% if form.formset %}
<h4 class="mt-3">Fichiers joints à ce chant</h4>
{{ form.formset.management_form }}
{% for subform in form.formset %}
<div class="card text-bg-secondary mt-2">
<div class="card-body">
2025-11-07 17:32:27 +01:00
{% for fld in subform.hidden_fields %}{{ fld }}{% endfor %}
{% if subform.fichier %}{{ subform.fichier.as_field_group }}
{% elif subform.instance.fichier %}
<div>Fichier: <a href="{{ subform.instance.fichier.url }}">{{ subform.instance.fichier }}</a></div>
{% endif %}
{{ subform.lien.as_field_group }}
{{ subform.titre.as_field_group }}
{{ subform.DELETE.as_field_group }}
2025-10-19 19:43:37 +02:00
</div>
</div>
{% endfor %}
{% endif %}
2025-10-19 17:59:46 +02:00
<div class="mt-3"><button type="submit" class="btn btn-primary">Enregistrer</button></div>
</form>
{% endblock content %}