{% extends 'admin/base.html.twig' %} {% block title %}Page {{ page.nameMenu }}{% endblock %} {% block description %}Modifier la page{% endblock %} {% block stylesheets %} {% endblock %} {% block body %} {{ form_start(form) }}

{{ form_widget(form.content, {'attr': {'class': 'form-control'}}) }}

Mes articles

{% if posts|length > 0 %} {% for post in posts %} {% endfor %} {% else %} {% endif %}
Titre Introduction Date de création Actions
{% if post.image is defined and post.image is not null %} {{ post.title }} {% endif %} {{ post.title }} {{ post.introduction }} {{ post.creationDate|date('d/m/Y') }}
Aucun article

{{ form_widget(form.name, {'attr': {'class': 'form-control'}}) }}

{{ form_widget(form.template, {'attr': {'class': 'form-control'}}) }}

{{ form_label(form.displayMenuHeader) }} {{ form_widget(form.displayMenuHeader, {'attr': {'class': 'form-control'}}) }}
{{ form_label(form.displayMenuFooter) }} {{ form_widget(form.displayMenuFooter, {'attr': {'class': 'form-control'}}) }}

{{ form_widget(form.seoTitle, {'attr': {'class': 'form-control'}}) }}
{{ form_widget(form.seoDescription, {'attr': {'class': 'form-control'}}) }}
{{ form_end(form) }}
{% endblock %} {% block javascripts %} {% endblock %}