{% extends "base.html" %} {% block title %}{{ schema }}.{{ table }} - engineer_kit{% endblock %} {% block content %}

{{ schema }}.{{ table }}

Amostra de até {{ limit }} linhas. ← voltar

{% for col in columns %}{% endfor %} {% for row in rows %} {% for value in row %}{% endfor %} {% endfor %}
{{ col }}
{{ value if value is not none else "∅" }}
{% endblock %}