{# # This file is part of MedShakeEHR. # # Copyright (c) 2017 # fr33z00 # 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 > userParameters # # @author fr33z00 # @contrib Bertrand Boutillier #} {% extends "page.html.twig" %} {% import "macroForm.html.twig" as f %} {% block title %}{{ config.designAppName }} : paramètres{% endblock %} {% block cssFiles %} {{ parent() }} {% endblock %} {% block jsFiles %} {{ parent() }} {% endblock %} {% block jsEmbed %} {{ parent() }} var clicRdvConsults={{ page.clicRdvConsults|default('{}') }}; var clicRdvConsultsRel={{ page.clicRdvConsultsRel|default('[]') }}; $(document).ready(function() { if(window.location.hash) { var hashTab = window.location.hash; $("ul.nav-tabs a[href='" + hashTab + "']").trigger('click'); } }); {% endblock %} {% block cssEmbed %} {{ parent() }} td {vertical-align:middle !important} td.time {width:150px} .consult td:nth-of-type(1) {width:40px} .consult td:nth-of-type(2) {width:80px} .consult td:nth-of-type(3) {width:300px} .consult td:nth-of-type(4) {width:120px} .consult td:nth-of-type(5) {width:120px} .consult td:nth-of-type(6) {width:80px} {% endblock %} {% block body %}

Paramètres utilisateur

{# validation error display bloc #} {{ f.errorFormDiv( session['form'][page.formIN]['validationErrorsMsg'] ) }} {# form display #}
{# formulaire ergonomie #}
{% include('inc-tabUserParametersErgonomie.html.twig') %}
{# réglages administratifs #}
{% include('inc-tabUserParametersAdministratif.html.twig') %}
{# formulaire mot de passe MedShake #}
{% include('inc-tabUserParametersPassword.html.twig') %}
{# LAP #} {% if config.optionGeActiverLapInterne == 'true' or config.administratifPeutAvoirPrescriptionsTypes == 'true' %}
{% include('inc-tabUserParametersLap.html.twig') %}
{% endif %} {# formulaire Agenda MedShake #} {% if page.hasAgenda %}
{% include('inc-tabUserParametersAgenda.html.twig') %}
{% endif %}
{% endblock %} {% block modals %} {# modal catégorie de prescription : création / édition #} {% include 'inc-userParamModalPresTypesCatNew.html.twig' %} {# modal des prescriptions types hors LAP : création / édition #} {% include 'inc-userParamModalPresTypesNew.html.twig' %} {% endblock %}