{% extends 'theme-6.html.twig' %} {# Title #} {% block title %}Tower{% endblock %} {# CSS #} {% block stylesheets %} {% endblock %} {% block row %}
{% if form.success is defined %}
{{ form.success.vars.label }}
{% endif%}

Edition du résumé 

{{ form_errors(form) }} {% if not form.album.rendered %} {# start: album #}
{{ form_label(form.album, 'Nom de l\'album', {'label_attr': {'class': 'col-md-3 control-label'}}) }} {{ form_errors(form.album) }}
{{ form_widget(form.album, {'attr': {'class': 'form-control'}}) }}
{# end: album #} {% endif %} {% if not form.description.rendered %} {# start: description #}
{{ form_label(form.description, 'Résumé', {'label_attr': {'class': 'col-md-3 control-label'}}) }} {{ form_errors(form.description) }}
{{ form_widget(form.description, {'attr': {'class': 'form-control'}}) }}
{# end: description #} {% endif %}
{% endblock %} {% block javascripts %} {% endblock %}