{#Integration du fichier base.html.twig#}
{% extends 'base.html.twig'%}
{#Titre de la page#}
{% block title %}
Liste des radiographies
{% endblock %}
{#En tete de la page#}
{% block head %}
{% endblock %}
{#Corps de la page#}
{% block body %}
Liste des radiographies
Format :
{% for format in formats %}
{% for value in format %}
{% endfor %}
{% endfor %}
Modalité :
{% for modalite in modalites %}
{% for value in modalite %}
{% endfor %}
{% endfor %}
Propriétaire / animal
Modalité
Format
Date
Heure
Nbe d'images
Structured Report (SR)
{% if app.user.role == "CREATEUR" %}
{% endif %}
{% for radio in radios %}
{{ radio.proprietaireAnimal }}
{{ radio.modalite }}
{{ radio.format }}
{{ radio.dateUpload|date("d/m/Y") }}
{{ radio.heureUpload }}
{% if radio.format == "JPEG" or radio.format == "PNG"%}
{{ radio.lesFichiers|length }}
{% elseif radio.format == "DICOM" %}
{{ nbFramesDicom[radio.id] }}
{% else %}
{% endif %}
{# Si la radio possede un SR -> alors afficher un champs #}
{% if radio.leSR is not null %}
{# Si la radio possede pas un SR -> n'affiche rien just un champs vide #}
{% else %}
{% endif %}
{% if app.user.role == "CREATEUR" %}
{#
#}
{#
#}
{% endif %}
{% endfor %}
Générer un PDF
Les informations du client
Noms
Informations de contact
Les remarques
Envoyer la radiographie par email.
Fichier :
{#
#}
{#
---------------d-------------------------d-------------------------d-------------------------d-------------------------d-------------------------d-------------------------d-------------------------d-------------------------d-------------------------d---------------------
{% for radio in radios %}
Radiographie de {{ radio.proprietaireAnimal }}
Nom du fichier :
{% if radio.format == 'JPEG' or radio.format == 'PNG' %}