{% extends 'base.html.twig' %} {% block stylesheets %} {% endblock %} {% block body %} {% set url = "" %} {% if app.user.is('admin') %} {% set url = '?client='~client.id %} {% endif %}
{% if client.hasActiveSouscription() %} {% set souscription = client.getActiveSouscriptions().first() %} {% set total = souscription.nbHeure %} {% set remain = souscription.getNbHeureRemaining() %} {% set progress = (remain / total) * 100 %} {% if progress == 100 %} {% set progress = 101 %} {% endif %} {% if progress > 50 %} {% set class = 'over50' %} {% endif %} {% endif %}
{% if client.hasActiveSouscription() %} {% set souscription = client.getActiveSouscriptions().first() %} {{ souscription.getNbHeureRemaining() }} H {% else %} {{ client.quota}} / 0 H {% endif %}
Restantes
Demander une intervention
Intervention
{{ activeInter | length }}
{{ client.getInterventions()| length }}
En cours
Total
Historique des interventions
Facturations
{{ activeCmd | length }}
Total
Historique des facturations
Réparations
{{ activeRep | length }}
{{ client.getReparations() | length }}
En cours
Total
Historique des réparations
{% endblock %}