{% extends "base.html" %} {% block content %}
{% include "pagination.html" %}| {% for column in table.get_columns %} | {{column.get_title}} | {% endfor %}
|---|---|
| Edit | {% for column in table.get_columns %}{% if column.is_foreign_key %} {{ attribute(record, column.get_name~'FKTITLE') }} {% elseif column.is_boolean %} {% if attribute(record, column.get_name) is sameas(true) %} Yes {% elseif attribute(record, column.get_name) is sameas(false) %} No {% else %} {% endif %} {% else %} {{ attribute(record, column.get_name) }} {% endif %} | {% endfor %}