1
0
Bifurcation 0

Initial commit

Cette révision appartient à :
Claude Paroz 2024-06-03 16:49:01 +02:00
révision 793bb6a488
182 fichiers modifiés avec 17153 ajouts et 0 suppressions

Voir le fichier

@ -0,0 +1,24 @@
{% extends "base.html" %}
{% block content %}
<div class="row border-bottom mt-3 mb-3">
<div class="col"><p class="lead">{{ view.titre_page }}</p></div>
</div>
<div class="row justify-content-center">
<div class="col-8">
<form action="." method="post" enctype="multipart/form-data">
{% csrf_token %}
{{ form.non_field_errors }}
<table class="table table-sm table-bordered mt-3 border-bottom">
<thead class="table-light">
<tr><th width="20%">{{ view.titre_formulaire }}</th><th></th></tr>
</thead>
<tbody>
{{ form.as_table }}
</tbody>
</table>
{% include 'actions.html' %}
</form>
</div>
</div>
{% endblock %}