{% extends "base.html" %} {% block title %}{{ _('Strutture') }}{% endblock %} {% block content %}
{{ total }} {{ _('records') }}
{% if struttura_list %}
{% for struttura in struttura_list %} {% endfor %}
ID {{ _('Site') }} {{ _('Sigla Struttura') }} {{ _('Categoria Struttura') }} {{ _('Tipologia Struttura') }} {{ _('Actions') }}
{{ struttura.id_struttura }} {{ struttura.sito or '-' }} {{ struttura.sigla_struttura or '-' }} {{ struttura.categoria_struttura or '-' }} {{ struttura.tipologia_struttura or '-' }}

{{ _('Total') }}: {{ total }} — {{ _('Page') }} {{ page }}/{{ total_pages }}

{% if total_pages > 1 %} {% endif %}
{% else %}
{{ _('No Struttura records found.') }} {{ _('Create the first one') }}
{% endif %} {% endblock %}