{% extends "base.html" %} {% block page_title %}Row {{ row[pk_col] if pk_col else '' }} — {{ table_info.name }} — {{ title }}{% endblock %} {% block content %}
{% for col in table_info.columns %} {% endfor %}
{{ col.name }} {{ col.display_type }} {% if col.is_pk %}PK{% endif %}
{{ render_cell(row[col.name], col.display_type) | safe }}
{% if not read_only and not col.is_pk %} {% endif %}
{% if not read_only %} {% endif %}
{% endblock %}