{% extends "finance_and_banking_base.html" %}
{% load static %}
{% load crispy_forms_tags %}
{% block title %}
{% if fabric_booking_list %}
{% comment %}
Item |
Supplier |
BTB Costing Value |
{% for entry in fabric_budget_booking_list %}
{{ entry.item }} |
{% for supplier_info in entry.supplier_info %}
{% if forloop.first %}
{{ supplier_info.supplier }} |
{{ supplier_info.btb_costing_value }} |
{% else %}
{{ supplier_info.supplier }} |
{{ supplier_info.btb_costing_value }} |
{% endif %}
{% endfor %}
{% endfor %}
{% endcomment %}
{% endif %}
{% endblock MainContent %}
{% block meassage %}
{% include 'notifications/notifications.html' %}
{% endblock meassage %}
{% block JS %}
{% endblock JS %}