{% extends 'admin.html.twig' %} {% block title %}Admin - Contact{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block body %}

Contact List

The Right Way - Admin Template

List des Contacts

{% include '@AppBundle/Default/flashBag.html.twig' %} {% for contact in contacts | reverse %} {% endfor %}
E-mail Subject State Date Actions
E-mail Subject State Date Actions
{% if contact.user == null %} {{ contact.email }} {% else %} {{ contact.user.email }} {% endif %} {{ contact.subject }} {% if contact.state == true %} Lu {% else %} Non Lu {% endif %} {{ contact.insertDate |leftDate }}
{% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}