{% extends 'user/base_user.html.twig' %} {% block title %}👤 Mon Grimoire{% endblock %} {% block body %}

👤 Mon grimoire

🧍 Mon Profil

Pseudo

{{ user.pseudo }}

Email

{{ user.email }}

☙✦ ✧ ✦❧

📚 Mes Œuvres et Articles

{% if oeuvres is empty %}

Vous n’avez pas encore créé d’œuvre.

{% else %}
{% for oeuvre in oeuvres %}

{{ oeuvre.titre }}

📖 ✏️ {{ include('oeuvres/_delete_form.html.twig', { oeuvre: oeuvre, compact: true }) }}
{% set related_articles = articles|filter(a => a.oeuvre and a.oeuvre.id == oeuvre.id) %} {% if related_articles is not empty %}
    {% for article in related_articles %}
  • {{ article.title }} ({{ article.status.value }}) 📖 ✏️ {{ include('articles/_delete_form.html.twig', { article: article, compact: true }) }}
  • {% endfor %}
{% else %}

Aucun article lié à cette œuvre.

{% endif %}
{% endfor %}
{% endif %}
☙✦ ✧ ✦❧
{% endblock %}