mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-16 19:23:27 +00:00
15 lines
251 B
HTML
15 lines
251 B
HTML
{% extends "core/base.html" %}
|
|
|
|
{% block content %}
|
|
<h2>Edit user groups</h2>
|
|
<form action="" method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<p><input type="submit" value="Update" /></p>
|
|
</form>
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|