{% extends "admin/_base_list.html.twig" %} {% block title %}Listado de imágenes de la sede "{{ sede.nombre }}"{% endblock %} {% block table_header %} # Imagen Activo Acción {% endblock %} {% block table_content %} {% if entities|length %} {% for entity in entities %} {% if entity.nombreImagen %}
{% else %} - {% endif %} {% if entity.activo %}Si{% else %}No{% endif %} Editar {{ form_start(deleteForms[entity.id]) }} {{ form_end(deleteForms[entity.id]) }} {% endfor %} {% else %} No hay registros creados. {% endif %} {% endblock %} {% block actions %}
Crear
{% endblock %} {% block actionsBottom %} Volver a sede {% endblock %} {% block javascripts %} {{ parent() }} {% block scriptSection %} {% endblock %} {% endblock %}