{# # 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 > logs: historique d'impression d'un document # # @author Bertrand Boutillier # @contrib fr33z00 #} {% extends "page.html.twig" %} {% import "macroForm.html.twig" as f %} {% block title %}{{ config.designAppName }} : historique impression{% endblock %} {% block cssEmbed %} {{ parent() }} .appercu .gras { font-weight: bold; } .appercu .centrer { text-align: center; } .appercu .t6 { font-size: 10px; } .appercu .t8 { font-size: 12px; } .appercu .t9 { font-size: 13px; } .appercu .t10 { font-size: 14px; } .appercu .t12 { font-size: 16px; } .appercu h2 { margin-top: 4px; font-size: 22px; } .appercu h3 { margin: 12pt 0 5px; padding: 0; font-size: 20px; } .appercu h4 { margin: 10pt 0 3px; padding: 0; font-size: 18px; } .appercu ul { margin: 0 0 0 10px; padding: 0; } .appercu .vat { vertical-align: top; } .appercu .cbox { font-family: DejaVu Sans, sans-serif; font-size: 16px; } .appercu th { background: #555; color: #FFF; text-align: center; font-size: 14px; } .appercu .tabPatiente td { vertical-align: top; margin: 0; padding: 0; text-align: left; } .appercu .bordurelat { border-left: 1pt solid #000; border-right: 1pt solid #000; } {% endblock %} {% block body %}

Historique des versions PDF générées

Retour dossier patient

{% for v in page.print %}
Auteur : {{ v.identiteAuteur }}
{{ v.value }}
{% endfor %}
{% endblock %}