{% extends 'base.html.twig' %} {% block js_document_ready %} $('#datatable').dataTable({ pageLength: 15, dom: 'Bfrtip', {# buttons: [ 'excel' ], #} buttons: [ { extend: 'excel', title: 'Asunto : {{notificacion.asunto|capitalize}}' + '\n' + ' Fecha Publicación: {{notificacion.fechaHoraPublicacion|date("d/m/Y H:i:s")}}', text: 'Excel description', titleAttr: 'Excel', exportOptions: { columns: ':visible', } }, { extend: 'pdf', title: 'Asunto : {{notificacion.asunto|capitalize}}' + '\n\n' + 'Fecha Publicación: {{notificacion.fechaHoraPublicacion|date("d/m/Y H:i:s")}}', messageTop : {% for msj in arrayMensaje %}'{{ msj }}' + '\n' + {% endfor %}'', text: 'PDF picture_as_pdf', titleAttr: 'PDF', exportOptions: { columns: ':visible' } }, 'colvis' ], filter : false, language: { "url": "//cdn.datatables.net/plug-ins/1.12.1/i18n/es-ES.json" }, aLengthMenu: "", bAutoWidth: false, "columns": [ { "data": "nombre_apellido" }, { "data": "dni" }, { "data": "fechaLeida" }, ], order: [[ 1, 'asc' ]], columnDefs: [ // These are the column name variables that will be sent to the server { "name": "nombre_apellido", "targets": 0 }, { "name": "p.dni", "targets": 1 }, { "name": "fechaLeida", "targets": 2 }, ], "displayStart": {{ app.session.get(constant('App\\Controller\\Notificacion\\NotificacionUsuarioController::FORM_CONSULTA_NOTIFICACION_USUARIO_STAR')) ?? 0 }}, serverSide: false, processing: true, ajax: { url: '{{ path('notificaciones_usuarios_datos', {'notificacion': notificacion.id}) }}', type: 'POST' } }); // the "href" attribute of the modal trigger must specify the modal ID that wants to be triggered {# $('.modal1').modal(); #} $('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

{{notificacion.asunto|capitalize}}

Fecha Publicación: {{notificacion.fechaHoraPublicacion|date("d/m/Y H:i:s")}}
{#
Nueva Notificaciónaddnotifications
#}
{% endblock %} {% block body %} {# #}
{{ form_start(form) }}
{{ form_label(form.textoBusqueda) }} {{ form_widget(form.textoBusqueda) }}
{{ form_label(form.dni) }} {{ form_widget(form.dni) }}
{{ form_end(form) }}

Nombre y Apellido DNI Fecha Leída
{% endblock %}