{% extends 'base.html' %} {% load static %} {% block content %}
| PCB Name | Project Name | Quantity | Price | Currency | Specifications | Date | File | Actions |
|---|---|---|---|---|---|---|---|---|
| {% if pcb.component %} {{ pcb.component.title }} {% else %} – {% endif %} | {{ pcb.project_name }} | {{ pcb.pcb_quantity }} | {% if pcb.order_status != 'request' %} {{ pcb.pcb_price|default:"–" }} {% else %} – {% endif %} | {% if pcb.order_status != 'request' %} {{ pcb.get_currency_display|default:"–" }} {% else %} – {% endif %} | {{ pcb.base_material }} | {{ pcb.pcb_date }} | {% if pcb.pcb_file %} Download {% else %} – {% endif %} |
{% if pcb.order_status == 'request' %}
Offer
Order
Edit
{% elif pcb.order_status == 'offer' %}
Order
Edit
Quote Canceled
{% elif pcb.order_status == 'order' %}
Edit
Purchase Canceled
{% endif %}
|