{% extends '@App/partials/base.html.twig' %} {% block title %}Bibliothèque de ressources{% endblock %} {% block content %}

Bibliothèque de ressources

{{ totals.total }} ressources disponibles pour accompagner vos utilisateurs

{{ totals.total }}
Total ressources
{{ totals.published }}
Publiées
{{ totals.archived }}
En attente
{{ totals.draft }}
Brouillons

Affichage:
{% for item in items %} {% set firstTag = (item.tags|default([])|first) ?: 'Sans catégorie' %} {% set search = (item.title ~ ' ' ~ (item.excerpt ?: '') ~ ' ' ~ (item.tags|default([])|join(' ')))|lower %} {% set color = item.type == 'NEWS' ? '#fee2e2' : (item.type == 'TEMPLATE' ? '#dbeafe' : (item.type == 'GUIDE' ? '#ede9fe' : '#ffedd5')) %}
{{ firstTag }} {{ item.status }}

{{ item.title }}

{{ item.excerpt ?: 'Aucun résumé.' }}

{{ item.viewsCount|number_format(0, ',', ' ') }} {{ item.downloadsCount|number_format(0, ',', ' ') }} {{ item.favoritesCount|number_format(0, ',', ' ') }}
{% set openPath = item.type == 'TEMPLATE' ? path('admin_modeles_edit', {id: item.id}) : (item.type == 'NEWS' ? path('admin_actualites_edit', {id: item.id}) : path('admin_resources_edit', {id: item.id})) %} Ouvrir
{% else %}
Aucune ressource
{% endfor %}
{% for item in items %} {% set firstTag = (item.tags|default([])|first) ?: 'Sans catégorie' %} {% set search = (item.title ~ ' ' ~ (item.excerpt ?: '') ~ ' ' ~ (item.tags|default([])|join(' ')))|lower %} {% set openPath = item.type == 'TEMPLATE' ? path('admin_modeles_edit', {id: item.id}) : (item.type == 'NEWS' ? path('admin_actualites_edit', {id: item.id}) : path('admin_resources_edit', {id: item.id})) %} {% else %} {% endfor %}
TitreCatégorieStatutTypeVuesTéléch.
{{ item.title }} {{ firstTag }} {{ item.status }} {{ item.type }} {{ item.viewsCount|number_format(0, ',', ' ') }} {{ item.downloadsCount|number_format(0, ',', ' ') }}Ouvrir
Aucune ressource.
{% endblock %}