{% extends 'admin/base.html.twig' %}
{% block title %}adminDocuments{% endblock %}
{% block body %}
Documents
{{ knp_pagination_sortable(companies, 'Id', 'id', {}, {'direction': companies.isSorted('id') and 'asc' == companies.direction ? 'desc' : 'asc' }) }} |
{{ knp_pagination_sortable(companies, 'Nom de l\'entreprise', 'name', {}, {'direction': companies.isSorted('name') and 'asc' == companies.direction ? 'desc' : 'asc' }) }} |
Demande d'agrément |
Contrat |
BdC Outil informatique |
Chèque de caution |
RIB |
Photos |
K-Bis |
RC PRO |
Décennal |
Quittance RC PRO |
Quittance Décennal |
Liasse Fiscale |
Attestation URSSAF |
{% set j = 0 %}
{% for company in companies %}
{% set documents = company.getDocuments() %}
{{ company.getId() }} |
{{ company.getname() }}
|
{% for document in documents %}
{{ document.agreement }} |
{{ document.type }} |
{{ document.software }} |
{{ document.depositCheck }} |
{{ document.rib }} |
{{ document.photo }} |
{{ document.kBis|date("d/m/Y") }} |
{{ document.rcPro|date("d/m/Y") }} |
{{ document.decennal|date("d/m/Y") }} |
{{ document.quittanceRcpro|date("d/m/Y") }} |
{{ document.quittanceDecennale|date("d/m/Y") }} |
{{ document.liasseFiscale|date("d/m/Y") }} |
{{ document.urssaf|date("d/m/Y") }} |
{% endfor %}
{% set j = j + 1 %}
{% endfor %}
{{ knp_pagination_render(companies) }}
{% endblock %}
{% block javascript %}
{% endblock %}