{% extends "_base.html" %} {% import 'tables/_macros.html' as table_macros %} {% block body %} {% if error %}
| Column | Type | Nullable | {% for field in table_schema %}
|---|---|---|
| {{ field.name }} | {{ field.type }} |
{% if field.nullable %}True{% else %}False{% endif %} |
| URI | {{ table_metadata.uri }} |
|---|---|
| Format | {{ table_metadata.table_format.value }} |
| ID | {{ table_metadata.id }} |
| Version | {{ table_metadata.version }} |
| Name | {{ table_metadata.name }} |
| Description | {{ table_metadata.description }} |
| Created at | {{ table_metadata.created_at }} |
| Partitions | {{ table_metadata.partitions }} |
| Configuration | {{ table_metadata.configuration }} |