{% extends 'onlineanywhere_base.html' %} {% block content %}

{{ table_name }}

Date From: {{ dataFrom }}   |   Date Bis: {{ dataBis }}
Records
{% for colName in userDetails[0] %} {% if colName in display_table_head %} {% endif %} {% endfor %} {% for row in userDetails[1:] %} {% for col in row %} {% if userDetails[0,loop.index0] in display_table_head %} {% endif %} {% endfor %} {% endfor %} {% for colName in userDetails[0] %} {% if colName in display_table_head %} {% endif %} {% endfor %}
{{ colName }}Edit Delete
{{ col }} Edit Delete
{% endblock %}