{% raw %} {% extends "navigation_template.html" %} {% block body_form %}

{{ page_heading }}

{% endraw %} {% for column_name, column_dict in blueprints['database']['current_table'].column_details.items() %} {% if column_name != "id" and column_dict.type_ui == "text" %} {{ current_table_name }} {{ column_name }} (type: {{ column_dict.type }}) {% elif column_name != "id" and column_dict.type_ui == "file" %} {{ current_table_name }} {{ column_name }} (type: {{ column_dict.type }}) {% endif %} {% endfor %} {% raw %}
{% endblock %} {% block body_data1 %} {{ df_html }} {% endblock %} {% endraw %}