{% extends 'base.html.twig' %} {% block js_document_ready %} //defino variable para fecha actual //defino variable para fecha actual function addZeroBefore(n) { return (n < 10 ? '0' : '') + n; } //defino variable para fecha actual var currentdate = new Date(); var datetime = "Extraído el: " + currentdate.getDate() + "/" + addZeroBefore((currentdate.getMonth()+1)) + "/" + currentdate.getFullYear() + " " + addZeroBefore(currentdate.getHours()) + ":" + addZeroBefore(currentdate.getMinutes()) + ":" + addZeroBefore(currentdate.getSeconds()); $('#datatable').dataTable({ pageLength: 15, dom: 'Bfrtip', buttons: [ { extend: 'excel', title: '{{convocatoriaExamen.convocatoria.titulo ~ ' - ' ~ convocatoriaExamen.cargo ~ ' - ' ~ departamentoJudicial.nombre|title }}' + '{% if jurisdiccion %} - Sede: {{ jurisdiccion.descrip|title }}{% endif %}', text: 'Excel description', titleAttr: 'Descargar Excel', exportOptions: { columns: ':visible' } }, { extend: 'pdf', title: '{{convocatoriaExamen.convocatoria.titulo ~ ' - ' ~ convocatoriaExamen.cargo ~ ' - ' ~ departamentoJudicial.nombre|title }}' + '{% if jurisdiccion %} - Sede: {{ jurisdiccion.descrip|title }}{% endif %}', messageTop: 'Cargo: {{convocatoriaExamen.cargo}}' + '\n' + 'Territorio: {{departamentoJudicial.nombre}}' + '{% if jurisdiccion %} - Sede: {{ jurisdiccion.descrip|title }}{% endif %}', text: 'PDF picture_as_pdf', titleAttr: 'Descargar PDF', exportOptions: { columns: ':visible' }, customize: function(doc) { doc['footer'] = (function(page, pages) { return { columns: [ { alignment: 'center', text: [ { text: datetime, italics: true }, ] }, { alignment: 'center', text: [ { text: page.toString(), italics: true }, ' de ', { text: pages.toString(), italics: true } ] }, ], margin: [2, 0] }; }); } }, 'colvis' ], filter : false, language: { "url": "//cdn.datatables.net/plug-ins/1.12.1/i18n/es-ES.json" }, aLengthMenu: "", bAutoWidth: false, "columns": [ { "data": "apellidos" }, { "data": "nombres" }, { "data": "dni" }, { "data": "telefono" }, { "data": "email" }, { "data": "estado" }, { "data": "aprobadoPorResolucion" }, {# { "data": "notificado" }, { "data": "confirmado" }, { "data": "fechaRespuesta" }, #} ], order: [[ 0, 'asc' ]], columnDefs: [ // These are the column name variables that will be sent to the server { "name": "dp.apellidos", "targets": 0 }, { "name": "dp.nombres", "targets": 1 }, { "name": "dp.dni", "targets": 2 }, { "name": "dp.telefono", "targets": 3 }, { "name": "dp.email", "targets": 4 }, { "name": "i.estado", "targets": 5 }, { "name": "i.aprobadoPorResolucion", "targets": 6 }, {# { "name": "notificado", "targets": 6 }, { "name": "confirmado", "targets": 7 }, { "name": "fechaRespuesta", "targets": 8 }, #} ], {# "displayStart": {{ app.session.get(constant('App\\Controller\\Notificacion\\NotificacionUsuarioController::FORM_CONSULTA_NOTIFICACION_USUARIO_STAR')) ?? 0 }}, #} serverSide: false, processing: true, ajax: { url: '{{ path('inscriptosCargoTerritorio_datos', {'convocatoriaExamen': convocatoriaExamen.id, 'territorio' : territorio.id}) }}', type: 'POST' } }); // the "href" attribute of the modal trigger must specify the modal ID that wants to be triggered $('select').formSelect(); var select = $('select'); $('.limpiar').click(function(){ $("input[type=text]").val(""); select.prop('selectedIndex', 0); //Sets the first option as selected select.material_select(); //Update material select form.submit(); }); {% endblock %} {% block breadcrumb %} {% endblock %} {% block titulo_body %}
list

Listado de inscriptos para {{convocatoriaExamen.convocatoria.titulo}}

Cargo : {{convocatoriaExamen.cargo}}
Territorio : {{departamentoJudicial.nombre|title}}
{% if jurisdiccion %} Sede : {{jurisdiccion.descrip|title}} {% endif %}
{% endblock %} {% block body %}
{{ form_start(form) }} {#
{{ form_label(form.textoBusqueda) }} {{ form_widget(form.textoBusqueda) }}
#}
{{ form_label(form.dni) }} {{ form_widget(form.dni) }}
{#
{{ form_label(form.estado) }} {{ form_widget(form.estado) }}
{{ form_label(form.notificado) }} {{ form_widget(form.notificado) }}
#}
{{ form_end(form) }}

{# #}
Apellido/s Nombre/s DNI Teléfono Email Estado Inscripción Aprobado por
Resolución
Notificado/a Rpta. Fecha/Hora rpta.
{% endblock %}