{% extends 'includes/layout.html' %} {% block body %}

{{table.title}}

{% if menu.find("s")>=0 %}
Search:
{% endif %}
{% if menu.find("x")>=0 %} {% endif %} {% if menu.find("d")>=0 %} {% endif %} {% if menu.find("e")>=0 %} {% endif %} {% if menu.find("a")>=0 %} {% endif %}


{% if data %}
{% for column in table.columns %} {% if request.path.upper().find("ITASKLIST")>=0 and column.description.upper().find("PROC") >= 0 %} {% elif column.description.find("**") >= 0 %} {% else %} {% endif %} {% endfor %} {% for row in data %} {% for column in table.columns %} {% if request.path.upper().find("ITASKLIST")>=0 and column.colname.upper().find('PROC') >= 0 %} {% elif row|attr(column.colname) is none %} {% else %} {% if request.path.upper().find("SMOCK100")>=0 and column.colname.upper()== 'SMVAL' %} {% else %} {% endif %} {% endif %} {% endfor %} {% endfor %}
No.{{column.description[:-2]}}{{column.description}}
{{loop.index}}. {{row|attr(column.colname)|to_decimal_normalize_x}} {{row|attr(column.colname)}}
{% else %}

No data


{% endif %}

{% endblock %}