aemo_fr/templates/aemo/famille_adresse.html

36 lines
1.3 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "base.html" %}
{% block content %}
<div class="row justify-content-center mt-5 border-bottom">
<div class="col-12">
<h3 align="center">Famille: {{ famille }}</h3>
</div>
</div>
<div class="row justify-content-center mt-3 pt-3">
<div class="col-8">
<h4>Changement dadresse</h4>
<form id="changement-adresse" method="post">{% csrf_token %}
<table class="table table-sm">
<tr>
<td>{{ form.rue.label_tag }}</td>
<td>{{ form.rue.errors }}{{ form.rue }}</td>
</tr>
<tr>
<td>{{ form.city_auto.label_tag }}</td>
<td>{{ form.city_auto.errors }}{{ form.city_auto }}</td>
</tr>
<tr>
<td colspan="2" class="pt-4">
<h5>Appliquer le changement aux personnes suivantes</h5>
</td>
</tr>
<tr>
<td colspan="2">{{ form.membres.errors }}{{ form.membres }}</td>
</tr>
</table>
{% include "actions.html" %}
</form>
</div>
</div>
{% endblock %}