From 233caaeec2f5ee2b9000bed8b057a23e854e183f Mon Sep 17 00:00:00 2001 From: DarckCrystale Date: Tue, 20 Jun 2017 10:13:52 +0200 Subject: [PATCH] Ref #3: jolie apparence pour la liste des annonces. --- app/Resources/views/annonce/liste.html.twig | 96 +++++++++++---------- web/css/annonce/liste.html.css | 0 2 files changed, 52 insertions(+), 44 deletions(-) create mode 100644 web/css/annonce/liste.html.css diff --git a/app/Resources/views/annonce/liste.html.twig b/app/Resources/views/annonce/liste.html.twig index e618fb1..5ad022f 100644 --- a/app/Resources/views/annonce/liste.html.twig +++ b/app/Resources/views/annonce/liste.html.twig @@ -1,49 +1,57 @@ {% extends 'base.html.twig' %} -{% block body %} -

Annonces list

+{% block title %}Annonces{% endblock %} - - - - - - - - - - - - - - - {% for annonce in annonces %} - - - - - - - - - - - {% endfor %} - -
IdSlugTitreDatecreationDatepublicationContenuEstPublicActions
{{ annonce.id }}{{ annonce.slug }}{{ annonce.titre }}{% if annonce.dateCreation %}{{ annonce.dateCreation|date('Y-m-d H:i:s') }}{% endif %}{% if annonce.datePublication %}{{ annonce.datePublication|date('Y-m-d H:i:s') }}{% endif %}{{ annonce.contenu }}{% if annonce.estPublic %}Yes{% else %}No{% endif %} - -
+{% block stylesheets %}{% endblock %} - +{% block body %} +
+ +

Annonces

+
+
+
+ Publier une nouvelle annonce +
+
+ + + + + + + + + + + + + + + + {% for annonce in annonces %} + + + + + + + + + + + + {% endfor %} + +
IDSlugTitreCréationPublicationContenuVisibilité
{{ annonce.id }}{{ annonce.slug }}{{ annonce.titre }}{% if annonce.dateCreation %}{{ annonce.dateCreation|date('d M Y') }}
{{ annonce.dateCreation|date('H:i') }}{% endif %}
{% if annonce.datePublication %}{{ annonce.datePublication|date('d M Y') }}
{{ annonce.datePublication|date('H:i') }}{% endif %}
{{ annonce.contenu }}{% if annonce.estPublic %}Publique{% else %}Privée{% endif %} + +
+
+
+
+ Publier une nouvelle annonce +
{% endblock %} diff --git a/web/css/annonce/liste.html.css b/web/css/annonce/liste.html.css new file mode 100644 index 0000000..e69de29