{% extends 'oeuvres/base_oeuvres.html.twig' %} {% block title %}Œuvres{% endblock %} {% block main_container %} {% block body %}
Fond Œuvres

Œuvres

{% for oeuvre in oeuvres %} {% embed 'components/_card.html.twig' %} {% block card_title %}

{{ oeuvre.titre }}

{% endblock %} {% block card_author %} {% if article is defined and article.author is not null %}

par {{ article.author.pseudo }}

{% elseif oeuvre is defined and oeuvre.user is not null %}

par {{ oeuvre.user.pseudo }}

{% endif %} {% endblock %} {% block card_subtitle %}

{{ oeuvre.type }}

{% endblock %} {% block card_content %}
{{ oeuvre.description|striptags|slice(0, 200)|replace({ 'é': 'é', 'è': 'è', 'ê': 'ê', 'à': 'à', ' ': ' ', '’': '\'', '‘': '\'', '"': '"', '&': '&' }) ~ '…' }}
{% endblock %} {% block card_footer %}
📚 {{ oeuvre.articles|length }} article{{ oeuvre.articles|length > 1 ? 's' : '' }}
📖 {% if is_granted('OEUVRE_EDIT', oeuvre) %} ✏️ {% endif %}
{% endblock %} {% endembed %} {% else %}

Aucune œuvre trouvée.

{% endfor %}
{% if is_granted('ROLE_USER')%} ➕ Créer une nouvelle œuvre {% endif %}
{% endblock %} {% endblock %}