templates/let_comment/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Décrivez votre éxpérience !{% endblock %}
  3. {% block content %}
  4.     <h1 class="mt-5">Laissez votre commentaire</h1>
  5.     <a href="{{ path('app_account') }}" class="btn btn-danger">Retour</a>
  6.     <hr>
  7. {% if notification %}
  8. <div class="alert alert-info">{{ notification }} </div>
  9. {% endif %}
  10.     {{ form_start(form) }}
  11.         <div class="row">
  12.             <div class="col-md-6">{{form_row(form.author)}}</div>
  13.             <div class="col-md-6">{{form_row(form.comment)}}</div>
  14.             <div class="col-md-6">{{form_row(form.illustration)}}</div>
  15.             <div class="col-md-6">{{form_row(form.activity)}} </div>
  16.             <div class="col-md-6 m-auto">{{form_row(form.submit)}}
  17.             <small>*Une fois que nous aurons vérifié la conformité avec notre charte de respect et de confidentialité, je publierais votre commentaire.</small>
  18.             </div>
  19.         </div>
  20.     {{ form_end(form) }}
  21. {% endblock %}