{% extends "stg_detail.html" %} {% block details %}

Table {{ obj.pk }}: {{ obj.name }}

Attributes

Derived Properties

Columns in this Table

{% if columns|length > 0 %} {% for c in columns %} {% endfor %}
Column Count Not-Null Integrity Reference Column
{{ c.name }}
(Column {{ c.pk }})
{% if c.description %}
{{ c.description }}{% endif %}
{{ c.count_notnull }} {{ c.integrity_status }}{% if c.integrity_detail %}
{{ c.integrity_detail }}{% endif %}
{% if c.ref_col %}{% with c.ref_col as rc %}{{ rc.name }}
(ReferenceColumn {{ rc.pk }}){% endwith %}{% endif %}
{% else %}

No Columns recorded for this table. If this seems unusual, bear in mind that 1) Column records are only generated for imports, not processed tables and 2) Column records aren't generated until the table has finished processing.

{% endif %} {% endblock %}