templates/progression/new.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}New Progression{% endblock %}
  3. {% block body %}
  4.     <!--begin::Engage Widget 1-->
  5.     <div class="card card-xxl-stretch">
  6.         <div class="card-header">
  7.             <h3 class="card-title">Création d'une progression</h3>
  8.             <div class="card-toolbar">
  9.                 <a type="button" class="btn btn-sm btn-light" href="{{ path('app_progression_index') }}">
  10.                     Retour
  11.                 </a>
  12.             </div>
  13.         </div>
  14.         <!--begin::Card body-->
  15.         <div class="card-body d-flex flex-column justify-content-between h-100">
  16.             <!--begin::Section-->
  17.             <div class="pt-12">
  18.                 {{ include('progression/_form.html.twig') }}
  19.             </div>
  20.             <!--end::Section-->
  21.         </div>
  22.         <!--end::Card body-->
  23.     </div>
  24. {% endblock %}