{% extends "base_template.html" %} {% block title %}{{ model_name }} - Admin{% endblock %} {% block breadcrumb %} {% endblock %} {% block content %}
| {{ col.name }} {% if col.primary_key %}PK{% endif %} {% if col.foreign_key %}FK{% endif %} | {% endfor %}Actions |
|---|---|
| {% set val = record.__dict__.get(col.name, '') %} {% if val is none %} null {% elif val|string|length > 80 %} {{ val|string|truncate(80) }} {% else %} {{ val }} {% endif %} | {% endfor %}Edit Delete |