{% extends "layout.html" %} {% block body %}

Table: {{ table_name }}

Create new item in {{ table_name }} Search Or Filter {{ table_name }}

{% if page > 1 %} Previous {% endif %} {% if page < pages %} Next {% endif %}

{%if results%} {%for col in table.columns%} {%endfor%} {%for row in results%} {%for key in row.keys()%} {% if key in ["price","cost"] %} {%else%} {%endif%} {%endfor%} {%endfor%}
{{ col.name }}Commands
${{ locale.format("%0.2f",row[key]/100.0,grouping=True) }}{{ row[key] }}View Modify Delete
{%endif%}

Page {{ page }} of {{ pages }}

{% endblock %}