{% extends "marchant_base.html" %} {% load static %} {% load crispy_forms_tags %} {% block title %} Trim Procurement {% endblock title %} {% block Style %} {% endblock Style %} {% block MainContent %} {% if messages %} {% for message in messages %} {% endfor %} {% endif %}

Trim Procurement

{% csrf_token %}
{{form.budget|as_crispy_field }}
{{form.item_trim|as_crispy_field }}
{% if trim_list %} {% for booking in trim_list %} {% endfor %} {% else %} {% endif %}
SL No Created Date Amount ($) Action
{{forloop.counter}} {{ booking.created_date }} {{ booking.amount|floatformat:3}}
Total Booked Amount: ${{ booked_amount|floatformat:3 }} Total Budget Amount: ${{ budget_amount|floatformat:3 }}
No Data Found
{% endblock MainContent %} {% block meassage %} {% include 'notifications/notifications.html' %} {% endblock meassage %} {% block JS %} {% endblock JS %}