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

Maintain Spending Limit Values


{% for spndlimval in spend_limit_value %} {% endfor %}
Company Number Spending limit code Spending Limit Value Currency
{{spndlimval.company_id}} {{spndlimval.spend_code_id}} {{spndlimval.upper_limit_value}} {{spndlimval.currency_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 %}
{{ spend_limit_value|json_script:"spend_limit_value" }} {% endblock %}