{% extends '@App/partials/base.html.twig' %} {% import '@Dashboard/admin/resources/_badges.html.twig' as badges %} {% block title %}{{ item ? 'Modifier la ressource' : 'Nouvelle ressource' }}{% endblock %} {% block content %}

{{ item ? 'Modifier la ressource' : 'Créer une ressource' }}

Gestion des contenus du centre de ressources.

Retour liste {% if item %} Voir les stats {% endif %}
{% set postPath = action == 'edit' and item ? path('admin_resources_edit_post', {id: item.id}) : path('admin_resources_new_post') %}
{% if item and item.coverImagePath %}
cover {{ item.coverImagePath }}
{% endif %}
{% if item and item.attachments|length > 0 %}
Pièces jointes existantes
{% for attachment in item.attachments %} {% endfor %}
NomTypeTailleKindAction
{{ attachment.originalName }} {{ attachment.mimeType }} {{ (attachment.size / 1024)|number_format(1, ',', ' ') }} Ko {{ attachment.kind }}
Télécharger
{% endif %}
{% endblock %}