12 lines
284 B
Twig
12 lines
284 B
Twig
|
{% extends 'base.html.twig' %}
|
||
|
|
||
|
{% block title %}New StatutCommandes{% endblock %}
|
||
|
|
||
|
{% block body %}
|
||
|
<h1>Create new StatutCommandes</h1>
|
||
|
|
||
|
{{ include('statut_commandes/_form.html.twig') }}
|
||
|
|
||
|
<a href="{{ path('app_statut_commandes_index') }}">back to list</a>
|
||
|
{% endblock %}
|