{% extends "base.html" %} {% load bootstrap5 %} {% block content %}

{{ list.name }}

Back to Home Manage Columns Add New Row
{% if not columns %}
No columns defined yet! Add columns to this table first before adding data.
{% elif not rows %}
No data yet! Add your first row to populate this table.
{% else %}
{% for column in columns %} {% endfor %} {% for row_item in table_data %} {% for entry_value in row_item.entries %} {% endfor %} {% endfor %}
Row # {{ column.name }}
({{ column.type }})
Actions
{{ forloop.counter }} {% if entry_value == True %} Yes {% elif entry_value == False %} No {% elif entry_value %} {{ entry_value }} {% else %} - {% endif %} Delete

Total Rows: {{ rows.count }}

{% endif %} {% endblock content %}