{% extends "base.html" %} {% block title %}Offers — Vela Platform{% endblock %} {% block content %}
| Component | Unit Cost | Unit Sell | Qty | Row Cost | Row Sell | Margin | {% if current_user.role == 'admin' %}{% endif %} |
|---|---|---|---|---|---|---|---|
| {{ c.name }}
{% if c.notes %} {{ c.notes }}{% endif %} |
{{ "%.0f"|format(c.unit_cost) }} | {{ "%.0f"|format(c.unit_sell) }} | {{ c.quantity }} | {{ "%.0f"|format(c.unit_cost * c.quantity) }} | {{ "%.0f"|format(c.unit_sell * c.quantity) }} | {{ "%.0f"|format(c.unit_sell - c.unit_cost) }} | {% if current_user.role == 'admin' %}
|
{% endif %}
| No components yet. | |||||||
| TOTAL | {{ "%.0f"|format(s.cost_price) }} | {{ "%.0f"|format(s.sell_price) }} | {{ "%.0f"|format(s.sell_price - s.cost_price) }} | {% if current_user.role == 'admin' %}{% endif %} | |||
No offers yet. Create your first one!