{% extends 'base.html.twig' %} {% block title %}Admin - Projet{% endblock %} {% block body %} {% include 'admin/_header.html.twig' %}
{% for label, messages in app.flashes %} {% for message in messages %} {% endfor %} {% endfor %} {% if tagshow is not empty %}

Les Photos du Projet : {{ projet.name }}

{# #} {% for photo in photos %} {# #} {% endfor %} {{ form_start(form_photo) }} {{ form_end(form_photo) }}
IdPhoto Tag Actions
{{ photo.id }} {{ photo.link }} {% if photo.idTag.name is defined %} {{ photo.idTag.name }} {% endif %}
{{ form_row(form_photo.link, {label: false }) }} {{ form_row(form_photo.id_tag, {label: false, attr: {placeholder: 'Nom du Tag'} }) }}
{% endif %}

Les Tags

{% for tag in tagshow %} {% endfor %} {{ form_start(form_tag) }} {{ form_end(form_tag) }}
Id Nom du Tag Actions
{{ tag.id }} {{ tag.name }}
{{ form_row(form_tag.name, {label: false, attr: {placeholder: 'Nom du Tag'} }) }}
{% endblock %} {% block extraScript %} {% endblock %}