27 lines
1.1 KiB
HTML
27 lines
1.1 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<h2>Édition/ajout de chant</h2>
|
|
|
|
<form method="post" enctype="multipart/form-data">{% csrf_token %}
|
|
{{ form.as_div }}
|
|
{% 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">
|
|
{% 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 }}
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
<div class="mt-3"><button type="submit" class="btn btn-primary">Enregistrer</button></div>
|
|
</form>
|
|
{% endblock content %}
|