{% extends 'base.html.twig' %} {% block breadcrumb %}
{% endblock %} {% block javascripts_base %} function initDateFormat( datePicker ) { var selectedDate = ( typeof datePicker.date === 'undefined' || datePicker.date === null ) ? datePicker.options.defaultDate : datePicker.date; var shortWeekdays = datePicker.options.i18n.weekdaysShort; var shortMonths = datePicker.options.i18n.monthsShort; var day = selectedDate.getDate(); var weekday = shortWeekdays[ selectedDate.getDay() ]; var month = shortMonths[ selectedDate.getMonth() ]; var formattedDate = weekday + ', ' + day + ' ' + month; document.querySelector(".datepicker-date-display .date-text").innerHTML = formattedDate; document.querySelector(".datepicker-date-display .year-text").innerHTML = selectedDate.getFullYear(); } function clickEliminar(e) { $url_eliminar=e.currentTarget.dataset.url; swal({ title: "Eliminar", text: "¿Está seguro que quiere eliminar este cargo de la Entrevista?", icon: "warning", buttons: true, }) .then((aceptar) => { if (aceptar) { $.ajax({ url: $url_eliminar, method: 'POST', mensaje: "hola", {# beforeSend: function (data) { console.log("hola") ; }, #} success: function (data) { M.toast({html: 'Se eliminó el cargo con éxito'}); //Borro el tr padre, que tenga la clase terminada en _tr y la borro $(e.target).parents("tr[class$='_tr']").remove(); }, error: function (error) { if(error.status == 500 || error.status == 400) { swal({ icon: 'error', title: 'Error', text: error.getResponseHeader('mensaje') ? error.getResponseHeader('mensaje').replaceAll(".", ".\n").replaceAll("ã", "á") : 'Error del servidor, intente más tarde.', }); } }, complete: function(html) { } }); } }); } function clickEliminarInforme(e) { $url_eliminar=e.currentTarget.dataset.url; debugger; swal({ title: "Eliminar", text: "¿Está seguro que quiere eliminar este Informe Psicológico?", icon: "warning", buttons: true, }) .then((aceptar) => { if (aceptar) { window.location.href = $url_eliminar; } }); } {% endblock %} {% block javascripts %} {{ parent()}} {% endblock %} {% block js_document_ready %} {{ parent() }} $('.datepicker').datepicker({ autoClose: true, showClearBtn: true, format: 'dd/mm/yyyy', container: 'body', {# defaultDate: p_defaultDate, #} {# yearRange: p_yearRange, #} {# maxDate: p_maxDate, #} {# setDefaultDate: p_setDefaultDate, #} onDraw: function (datePicker) { // materialize select dropdown not proper working on mobile and tablets so we make it browser default select $('.datepicker-container').find('.datepicker-select').addClass('browser-default'); $(".datepicker-container .select-dropdown.dropdown-trigger").remove(); }, onOpen: function (p) { var instance = M.Datepicker.getInstance(this.el); var d = instance.el.value.split(/[^0-9]/); var newDate = new Date(d[2], d[1] - 1, d[0]); instance.setDate(newDate); initDateFormat(instance); }, i18n: { cancel: 'Cancelar', clear: 'Limpiar', done: 'Aceptar', weekdays: ["Domingo", "Lunes", "Martes", "Miércoles", "Jueves", "Viernes", "Sábado"], weekdaysShort: ["Domingo", "Lunes", "Martes", "Miércoles", "Jueves", "Viernes", "Sábado"], weekdaysAbbrev: ["D", "L", "M", "M", "J", "V", "S"], today: 'Hoy', months: [ 'Enero', 'Febrero', 'Marzo', 'Abril', 'Mayo', 'Junio', 'Julio', 'Agosto', 'Septiembre', 'Octubre', 'Noviembre', 'Diciembre' ], monthsShort: [ 'Enero', 'Febrero', 'Marzo', 'Abril', 'Mayo', 'Junio', 'Julio', 'Agosto', 'Septiembre', 'Octubre', 'Noviembre', 'Diciembre' ], } }); {% endblock %} {% block titulo_body %} {% endblock %} {% block dialogos_modales %}DNI {{presentacion.datosPersonales.dni}} - {% if presentacion.datosPersonales.genero == 'F' %} {{ 'Femenino' }} {% elseif presentacion.datosPersonales.genero == 'M' %} {{ 'Masculino' }} {% else %} {{ 'Género: Otros' }} {% endif %}
Nacimiento: {{ presentacion.datosPersonales.fechaNacimiento ? presentacion.datosPersonales.fechaNacimiento|date('d/m/Y') ~ ' - ' : '--' }} {{ presentacion.datosPersonales.nacionalidad ? presentacion.datosPersonales.nacionalidad|title : '--' }}
Domicilio actual: {{ presentacion.datosPersonales.domCalle ? presentacion.datosPersonales.domCalle: '--' }} nro {{ presentacion.datosPersonales.domNumero ? presentacion.datosPersonales.domNumero : '--' }}, {{ presentacion.datosPersonales.domLocalidad ? presentacion.datosPersonales.domLocalidad|title : '--' }} ({{ presentacion.datosPersonales.domCodigoPostal }}), Prov. de {{ presentacion.datosPersonales.domLocalidad ? presentacion.datosPersonales.domProvincia : '--' }}
{% if presentacion.datosPersonales.email %} {{ presentacion.datosPersonales.email}} {% else %} -- {% endif %}
{% if presentacion.datosPersonales.telefono %} {{ presentacion.datosPersonales.telefono}} {% else %} -- {% endif %}
Cargo | Resultado |
---|