{% extends "base.html" %} {% block title %}{{ _('UT') }}{% endblock %} {% block content %}
{{ total }} {{ _('records') }}
{% if ut_list %}
{% for ut in ut_list %} {% endfor %}
ID {{ _('Project') }} {{ _('Nr. UT') }} {{ _('UT Letterale') }} {{ _('Def. UT') }} {{ _('Localita') }} {{ _('Actions') }}
{{ ut.id_ut }} {{ ut.progetto or '-' }} {{ ut.nr_ut if ut.nr_ut is not none else '-' }} {{ ut.ut_letterale or '-' }} {{ ut.def_ut or '-' }} {{ ut.localita or '-' }}

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

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