mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-23 03:43:12 +00:00
19 lines
496 B
HTML
19 lines
496 B
HTML
{% extends "machines/sidebar.html" %}
|
|
{% load bootstrap3 %}
|
|
|
|
{% block title %}Création et modification de machines{% endblock %}
|
|
|
|
{% block content %}
|
|
{% bootstrap_form_errors machineform %}
|
|
{% bootstrap_form_errors interfaceform %}
|
|
|
|
<form class="form" method="post">
|
|
{% csrf_token %}
|
|
{% bootstrap_form machineform %}
|
|
{% bootstrap_form interfaceform %}
|
|
{% bootstrap_button "Créer ou modifier" button_type="submit" icon="star" %}
|
|
</form>
|
|
<br />
|
|
<br />
|
|
<br />
|
|
{% endblock %}
|