You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
383 B

2 months ago
  1. {% extends 'base.html.twig' %}
  2. {% block breadcrumb %}
  3. <li class="breadcrumb-item"><a href="{{ path('app_project') }}">Projets</a></li>
  4. <li class="breadcrumb-item"><a href="{{ path('app_project_create') }}">Créer un nouveau projet</a></li>
  5. {% endblock %}
  6. {% block page_title %}Créer un nouveau projet{% endblock %}
  7. {% block page_content %}
  8. {{ form(create_form) }}
  9. {% endblock %}