{% extends "merchant_base.html" %} {% load static %} {% load crispy_forms_tags %} {% block title %} Budget Index {% endblock title %} {% block Style %} {% endblock Style %} {% block MainContent %}
{% if messages %} {% for message in messages %} {% endfor %} {% endif %}

Budgets Index

{% csrf_token %}
{{form.status|as_crispy_field}}
{% if request.user.is_superuser == True %} {% endif %} {% if budgets %} {% for budget in budgets %} {% if budget.file_name != 'Not Assigned' %} {% elif budget.management_budget_submit_status == 'Approved' %} {% else %} {% endif %} {% if request.user.is_superuser == True %} {% endif %} {% endfor %} {% else %} {% endif %}
SL No Budget Name Buyer Revision File Name Team Finance Company Mode Of Price Status
Comment
Management ApprovalsFnB StatusPreview
{{forloop.counter}} {{ budget.name }} {{ budget.buyer_display.buyer }} {% if budget.buyer_display.agent %}/ {{budget.buyer_display.agent}} {% endif %} {% if budget.revision_number == 0 %} 1st Submission {% else %} {{ budget.revision_number }} {% endif %} {{budget.file_name}}({{budget.file_budget.order_no}})Not AssignedNot Assigned{{ budget.team }} ({{budget.created_by_employee}}) {{ budget.finance_company }} {{ budget.get_mode_of_price_display}} {{ budget.get_budget_submit_status_display }}
{% if budget.comment %} Comment: {{budget.comment}} {% else %} {% endif %}
{{ budget.get_management_budget_submit_status_display }} {{ budget.fnb_active }}
  • {% if budget.budget_submit_status == 'not_submit' %}
  • {% endif %}
No Data Found
{% if budgets.has_other_pages %} {% endif %}
{% endblock MainContent %} {% block meassage %} {% include 'notifications/notifications.html' %} {% endblock meassage %} {% block JS %} {% endblock JS %}