beesgospel/templates/membres/chant_edit.html

22 lines
708 B
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">
{{ subform }}
</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 %}