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

Add New Row to "{{ list.name }}"

Back to Table Data
{% if not columns_with_types %}
No columns defined! Add columns to this table first before adding data.
{% else %}
{% csrf_token %}
{% for col_info in columns_with_types %}
{% if col_info.type_name == "BinaryColumn" %} {% elif col_info.type_name == "MultipleLineTextColumn" %} {% elif col_info.type_name == "DateTimeColumn" %} {% elif col_info.type_name == "NumberColumn" or col_info.type_name == "CurrencyColumn" %} {% elif col_info.type_name == "URLColumn" %} {% else %} {% endif %}
{% endfor %}
Cancel
{% endif %} {% endblock content %}