{% extends "base.html" %} {% block title %}Informazioni Database{% endblock %} {% block content %}

Informazioni Database

Indietro
Informazioni Connessione
URL Connessione:
{{ current_url }}
Tabelle Principali
Tabella Numero Record Descrizione
site_table {{ table_counts.get('site_table', 0) }} Siti archeologici
us_table {{ table_counts.get('us_table', 0) }} Unità stratigrafiche
inventario_materiali_table {{ table_counts.get('inventario_materiali_table', 0) }} Inventario materiali
{% if tables %}
Tutte le Tabelle ({{ tables|length }})
{% for table in tables %}
{{ table }}
{% endfor %}
{% endif %}
Stato Database
Connessione Attiva

Database raggiungibile e operativo

{% if tables|length > 0 %}
Struttura Valida

{{ tables|length }} tabelle trovate

{% else %}
Nessuna Tabella

Database vuoto o incompatibile

{% endif %}
{% set total_records = table_counts.get('site_table', 0) + table_counts.get('us_table', 0) + table_counts.get('inventario_materiali_table', 0) %} {% if total_records > 0 %}
Dati Presenti

{{ total_records }} record totali

{% else %}
Database Vuoto

Nessun dato presente

{% endif %}
{% endblock %}