{% extends 'root/base.html' %} {% load static %} {% block title %} Approvals (Admin Tool) {% endblock %} {% block maincontent %} {% include 'root/loader.html' %}

Approvals Report


{% csrf_token %}

{% if t_count > 0 %}
Total number of results found: {{ t_count }}
{% endif %} {% if t_count == 0 %}
No Results Found
{% endif %}
{% if t_count > 0 %} {% if final_list %}
{% for acc in final_list %} {% if acc.1 == 'AS' %} {% elif acc.1 == 'CC' %} {% elif acc.1 == 'GLACC' %} {% elif acc.1 == 'OR' %} {% elif acc.1 == 'WBS' %} {% endif %} {% endfor %}
Company Code Account Assignment Category Account Assignment Value Approver Approver Code Approval Limit Approver Currency Key Superior Company Code Superior Account Assignment Value
{{ acc.0 }}AssetCost CenterGeneral Ledger AccountInternal OrderProject{{ acc.2 }} {{ acc.3 }} {{ acc.9 }} {{ acc.7 }} {{ acc.8 }} {{ acc.5 }} {{ acc.6 }}
{% endif %} {% endif %}
 
{% if inc_footer %} {% include 'root/footer.html' %} {% endif %} {% endblock %}