{# # This file is part of MedShakeEHR. # # Copyright (c) 2017 # Bertrand Boutillier # http://www.medshake.net # # MedShakeEHR is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # any later version. # # MedShakeEHR is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with MedShakeEHR. If not, see . #/ /## # Template > Config : liste des tags DICOM rencontrés et associés à une data # # @author Bertrand Boutillier # @contrib fr33z00 #} {% extends "page.html.twig" %} {% import "macroForm.html.twig" as f %} {% block title %}{{ config.designAppName }} : configuration tags Dicom{% endblock %} {% block head %} {{ parent() }} {% endblock %} {% block body %}

Tags DICOM

{% for k,v in page.tags %} {% for t in v %} {% if t.typeName|length > 0 %} {% endif %} {% endfor %} {% endfor %}
Tag Type associé Unité Valeur retournée Décimales
{{ k }}    {{ v.0.dicomCodeMeaning }}
  {{ t.typeName }} {{ t.label }}{% if t.labelCat %} ({{ t.labelCat }}){% endif %} {{ t.dicomUnits }} {{ t.returnValue }} {{ t.roundDecimal }}
{% endblock %} {% block modals %} {# modal new type #} {% endblock %}