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

22
templates/aemo/role_edit.html Fichier normal
Voir le fichier

@ -0,0 +1,22 @@
{% extends "base.html" %}
{% block content %}
<div class="row border-bottom mb-3">
<div class="col"><p class="lead">Role</p></div>
</div>
<div class="row justify-content-center">
<div class="col-6">
<form action="#" method="post">
{% csrf_token %}
<form action="." method="post">
{% csrf_token %}
<table class="table table-sm">
{{ form.as_table }}
</table>
{% include "actions.html" %}
</form>
</form>
</div>
</div>
{% endblock %}