Initial commit

This commit is contained in:
Claude Paroz 2024-06-03 16:49:01 +02:00
commit 793bb6a488
182 changed files with 17153 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{{ wizard.management_form }}
<table class="mb-3">
{% for field in form.visible_fields %}
<tr><th>{{ field.label_tag }}</th>
<td>{{ field.errors }}{{ field }}
{% if field.name == 'password' %} <a href="{% url 'password_reset' %}">Mot de passe oublié ?</a>{% endif %}
</td>
</tr>
{% endfor %}
</table>
{% for hidden in form.hidden_fields %}
{{ hidden }}
{% endfor %}