{# # 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 : liste des dossiers marqués supprimés # # @author Bertrand Boutillier # @contrib fr33z00 #} {% extends "page.html.twig" %} {% import "macroForm.html.twig" as f %} {% block title %}{{ config.designAppName }} : liste des dossiers supprimés{% endblock %} {% block jsFiles %} {{ parent() }} {% endblock %} {% block jsEmbed %} {{ parent() }} $(document).ready(function() { $('body').on('click', 'button.destroyPeople', function (e) { var peopleID = $(this).attr('data-patientID'); var peopleIdentity = $(this).attr('data-patientIdentite'); $('#peopleIdentity').html(peopleIdentity); $('#peopleNumber').html(peopleID); $('#modalpeopleDestroy input[name="peopleID"]').val(peopleID); }); $('body').on('click', '#formDestroyePeople button[type="submit"]', function (e) { e.preventDefault(); ajaxModalSave('#formDestroyePeople', '#modalpeopleDestroy' , function(){ $('#modalpeopleDestroy').modal('hide'); window.location.reload();}); }); }); {% endblock %} {% block body %}

Liste des dossiers supprimés

{% if page.users|length < 1 %}
Il n'existe aucun dossier supprimé.
{% else %} {% for v in page.users %} {% endfor %}
# Dossier Type dossier Supprimé par Le Motif
{{ v.id }} {{ v.identiteDossier|e }} {{ v.typeDossier|e }} {{ v.identiteUser|e }} {{ v.dateDeleted|e }} {{ v.motif|e }}
{% if config.optionGeDestructionDataDossierPatient == 'true' %} {% endif %}
{% endif %} {% endblock %} {% block modals %} {% endblock %}