You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
496 B
Twig
16 lines
496 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}{% if machine.id is null %}Création {% else %}Modification{% endif %} machine - {{ parent() }}{% endblock %}
|
|
|
|
{% block mainContent %}
|
|
<h1>
|
|
{% if machine.id is null %}
|
|
Création nouvelle machine
|
|
{% else %}
|
|
Modification du la machine "{{ machine.name }}"
|
|
{% endif %}
|
|
</h1>
|
|
{{ form(form) }}
|
|
<a href="{{ path('config_machine_list') }}" class="btn btn-danger">Annuler</a>
|
|
{% endblock %}
|