mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-16 16:33:12 +00:00
17 lines
409 B
HTML
17 lines
409 B
HTML
{% extends "topologie/sidebar.html" %}
|
|
{% load bootstrap3 %}
|
|
|
|
{% block title %}Création et modificationd 'utilisateur{% endblock %}
|
|
|
|
{% block content %}
|
|
{% bootstrap_form_errors topoform %}
|
|
|
|
<form class="form" method="post">
|
|
{% csrf_token %}
|
|
{% bootstrap_form topoform %}
|
|
{%bootstrap_button "Créer ou modifier" button_type="submit" icon="ok" %}
|
|
</form>
|
|
<br />
|
|
<br />
|
|
<br />
|
|
{% endblock %}
|