{% extends "base.html" %} {% block title %}TAPDB Admin - Info{% endblock %} {% block content %}
| Key | Value |
|---|---|
{{ key }} |
{{ value }} |
Password values are never displayed.
Could not resolve Cognito details: {{ cognito_error }}
{% endif %} {% if cognito_summary_rows %}| Key | Value |
|---|---|
{{ key }} |
{{ value }} |
| Key | Value |
|---|---|
{{ key }} |
{{ value }} |
No Cognito runtime values available.
{% endif %}Could not load database inventory: {{ db_inventory_error }}
{% else %}
Connected runtime database:
{{ db_inventory_db_name or "unknown" }}
Schemas:
{% if db_inventory_schema_names %}
{% for schema_name in db_inventory_schema_names %}
{{ schema_name }}{% if not loop.last %}, {% endif %}
{% endfor %}
{% else %}
none
{% endif %}
| Object Class | Count |
|---|---|
| schemas | {{ db_inventory_counts.schemas }} |
| tables | {{ db_inventory_counts.tables }} |
| views | {{ db_inventory_counts.views }} |
| materialized views | {{ db_inventory_counts.materialized_views }} |
| sequences | {{ db_inventory_counts.sequences }} |
| triggers | {{ db_inventory_counts.triggers }} |
| functions | {{ db_inventory_counts.functions }} |
| indexes | {{ db_inventory_counts.indexes }} |
| Schema | Table |
|---|---|
{{ row.schema_name }} |
{{ row.table_name }} |
No tables found.
{% endif %}| Schema | View |
|---|---|
{{ row.schema_name }} |
{{ row.view_name }} |
No views found.
{% endif %}| Schema | Materialized View |
|---|---|
{{ row.schema_name }} |
{{ row.materialized_view_name }} |
No materialized views found.
{% endif %}| Schema | Sequence |
|---|---|
{{ row.schema_name }} |
{{ row.sequence_name }} |
No sequences found.
{% endif %}| Schema | Table | Trigger |
|---|---|---|
{{ row.schema_name }} |
{{ row.table_name }} |
{{ row.trigger_name }} |
No triggers found.
{% endif %}| Schema | Function |
|---|---|
{{ row.schema_name }} |
{{ row.function_signature }} |
No functions found.
{% endif %}| Schema | Table | Index |
|---|---|---|
{{ row.schema_name }} |
{{ row.table_name }} |
{{ row.index_name }} |
No indexes found.
{% endif %}