{% extends "base.html" %} {% block title %}{{ table_name }} - DeeBase Admin{% endblock %} {% block content %}
{% if records %} {% for col in columns %} {% endfor %} {% for record in records %} {% for col in columns %} {% endfor %} {% endfor %}
{{ col }}Actions
{% set value = record[col] %} {% if value is none %} null {% elif value is string and value|length > 50 %} {{ value[:50] }}... {% else %} {{ value }} {% endif %} View Edit Delete
{% else %}

No records found in {{ table_name }}.

+ Add first record
{% endif %}
{% endblock %}