{% extends 'base.html.twig' %} {% block title %}Collection Fractal{% endblock %} {% block main %}

Nouvelle Collection

{% if 'ROLE_ADMIN' in app.user.roles %}

Toutes les collections

{% for collection in priv_collections_fractal %}
collection
{{ collection.name }}

Collection de {{ collection.membreFractal }}

{{ collection.ispublic ? 'Publique' : 'Privée' }}

{% endfor %} {% else %}

Collections Fractal

{% for collection in collection_fractales %}
collection
{{ collection.name }}

Collection de {{ collection.membreFractal }}

Détails {% if app.user.membreFractal.id == collection.membreFractal.id %} Éditer {% endif %}
{% endfor %}

Mes Collections Privées

{% for collection_fractal in priv_collections_fractal %} {% else %} {% endfor %}
Nom Actions
{{ collection_fractal.name }} Afficher Éditer
Vous n'avez pas de collection privée.
{% endif %} {% endblock %}