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

Account Assignments 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 and final_list %}
{% for acc in final_list %} {% if acc.1 != "Unknown" and acc.1 is not None and acc.1 != "" %} {% endif %} {% endfor %}
Company Number Account Assignment Category Account Assignment Value Description Language Valid From Valid To
{{ acc.0 }} {% if acc.1.pk == 'AS' %} Asset {% elif acc.1.pk == 'CC' %} Cost Center {% elif acc.1.pk == 'GLACC' %} General Ledger Account {% elif acc.1.pk == 'OR' %} Internal Order {% elif acc.1.pk == 'WBS' %} Project {% endif %} {{ acc.2 }} {{ acc.3 }} {{ acc.4 }} {{ acc.5 }} {{ acc.6 }}
{% endif %}
 
{% if inc_footer %} {% include 'root/footer.html' %} {% endif %} {% endblock %}