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

Client Report

View, Filter, Edit and Delete Client Records
Report Filters
{% if tables %} {% set show_all = (not category_val) or category_val == 'all' %}
{{ abstract_html|safe }}
{% if show_all or category_val == 'tr' %}
{% if has_data.tr %}
{% endif %}
{{ tables.tr|safe }}
{% endif %} {% if show_all or category_val == 'mh' %}
{% if has_data.mh %}
{% endif %}
{{ tables.mh|safe }}
{% endif %} {% if show_all or category_val == 'dc' %}
{% if has_data.dc %}
{% endif %}
{{ tables.dc|safe }}
{% endif %} {% if show_all or category_val == 'laying' %}
{% if has_data.laying %}
{% endif %}
{{ tables.laying|safe }}
{% endif %}
{% endif %}
{% endblock %}