{% extends 'root/base.html' %} {% load static %} {% block title %} Approval Limits (Master Settings) {% endblock %} {% block maincontent %} {% include 'root/loader.html' %}

Maintain Approval Limits


{% for applimit in approval_limit %} {% endfor %}
Company Number User Name Approver Limit Code
{{applimit.company_id}} {{ applimit.approver_username}} {{applimit.app_code_id}}
{% include 'configuration_common_pop_up.html' %}
{% if messages %} {% for message in messages %} {% if message.tags == 'success' %}
{{ message }}
{% endif %} {% if message.tags == 'error' %}
{{ message }}
{% endif %} {% if message.tags == 'info' %}
{{ message }}
{% endif %} {% endfor %} {% endif %}
{% endblock %}