{% extends 'base_backend_admin.html.twig' %} {% block title %} Position {% endblock %} {% block content %}

Position et affichage

{% include 'backend_admin/basic/notice.html.twig' %}
Afficher l'annonce sur la page d'acceuil
Annonce:
{{ position.getAnnonce().getTitre() }}
Date Début
{{ position.getDateAdd()|date("d/m/Y") }}
Date Fin
{{ position.getDateFin()|date("d/m/Y") }}
Ligne d'affichage
{{ ligne.getRang() }}
Dimension
{{ position.getAnnonce().getDimension() }}
Prix Total d'annonce:
{{ position.getTotalPrix()}} DT
Créer par:
{{ position.getCreateBy().getFirstname() }} {{ position.getCreateBy().getLastname() }}
date:
{{ position.getDateAdd()|date("d/m/Y") }}

Affichage d'annonce sur la Ligne {{ position.getLigneRange() }} {{ position.getAffichages()|length }} Jour

    {% for affichage in position.getAffichages() %}
  • {{ affichage.getDateShow()|date("d/m/Y") }}
    Ligne {{ affichage.getLigneRange() }} {{ affichage.getPrix() }} DT
  • {% endfor %}
{% endblock %}