{% extends "@index/base.html.twig" %} {% set page_id = 'backend' %} {% set noindex = true %} {% set oneColumn = true %} {% set page = page > 0 ? page : 1 %} {% set tooltips = { 'password':'La contraseña está encriptada y solo es posible generar una nueva, no puede desencriptarse', } %} {% set filters = { 'today':'Hoy', 'yesterday':'Ayer', 'last_days':'Últimos días', 'last_items':'Últimos comentarios', 'active_items':'Comentarios activos', } %} {% set noShow = ['ancestors','depth','guest_name'] %} {% block titulo %}Backend Búsquedas{% endblock %} {% block lang %}{% endblock lang %} {% block stylesheet %} {{ parent() }} {% endblock stylesheet %} {% block bread %} {{ breadCrumbs | raw }}
{% endblock bread %} {% block oneOne %}

Gestor de Búsquedas

{% if date_start or date_end or search or filter_predefined %} Filtros: {% endif %} {% if (date_start or date_end) and filter_predefined not in 'today,yesterday' %} Entre el {{ dateFormat(date_start) }} y el {{ dateFormat(date_end) }} {% endif %} {% if search %} {{ search }} {% endif %} {% if filter_predefined is not empty and filter_predefined != 'last_days' %} {{ filters[filter_predefined] }} {% endif %}

{{ numItems }} registros seleccionados

{% for row in items %} {% if loop.first %} {% for k,v in row %} {% if k not in noShow %} {% endif %} {% endfor %} {% endif %} {{ loop.first ? '' : '' }} {% for k,v in row %} {% if k not in noShow %} {% endif %} {% endfor %} {{ loop.last ? '' : '' }} {% endfor %}
{{ k | replace({"_":" "}) | capitalize }}
{{ loop.index + ((page - 1) * limit) }} {% if k in 'create_at' %} {{ v | date('d-m-Y H:i') }} {% elseif k in 'search,user_ip,referer' %} {{ v | truncate(60, true) }} {% else %} {{ v }} {% endif %} Eliminar
{{ paginador | raw }}
Versión: 1.0 {% endblock oneOne %} {% block javascript %} {{ parent() }} {% endblock javascript %}