{% include 'sidebar.html' %}
Delete Records
Select Table
-- Choose Table --
{% for table in tables %}
{{ table }}
{% endfor %}
{% if selected_table %}
Search
{% csrf_token %}
Records from {{ selected_table }}
{% if rows %} {% for row in rows %}
{{ row }}
{% endfor %} {% else %}
No records found.
{% endif %}
Delete Selected
{% endif %}