{% extends 'base_reploc_general.html.twig' %} {% import 'macros/macro.html.twig' as macro %} {% block title %} {{ parent() }} Fichiers Rep loc {% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block headerRight %} {{ parent() }} {% endblock %} {% block body %} {{ parent() }} {% if status == 'submit' %} {% elseif status == 'ok' %}
{% if reploc.isRep %}
REPLOC {{ reploc.code }}
{% else %}
CALLOC {{ reploc.code }}
{% endif %}
{{ form_start(form, {'attr' : {'id' : 'reploc-files-form', 'autocomplete' : 'off'}}) }} {{ form_widget(form.certif, {'attr' : {'style' : 'display: none'}}) }}
{{ form_widget(form.repLocFiles) }}
{{ form_end(form) }}
Liste des fichiers :
{% if files|length == 0 %}

Aucun fichier

{% else %}
{% for file in files %}
{{ file.originalFilename }}
{{ file.createdAt|date("d/m/Y") }}
{% endfor %}
{% endif %}
{% else %}

Aucune Rep Loc trouvée

{% endif %} {% endblock %} {% block modal %} {% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}