{% extends "base.html" %} {% block title %}Offers — Vela Platform{% endblock %} {% block content %}

Offers & Pricing

{% if current_user.role == 'admin' %} {% endif %}
{% for s in services %}
{{ s.name }} {{ s.description }}
Sell: {{ "%.0f"|format(s.sell_price) }} MAD Cost: {{ "%.0f"|format(s.cost_price) }} MAD Margin: {{ "%.0f"|format(s.sell_price - s.cost_price) }} MAD {{ 'Active' if s.active else 'Inactive' }}
{% if current_user.role == 'admin' %} {% endif %} {% for c in s.components %} {% if current_user.role == 'admin' %} {% endif %} {% else %} {% endfor %} {% if current_user.role == 'admin' %} {% endif %}
Component Unit Cost Unit Sell Qty Row Cost Row Sell Margin
{{ 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) }}
No components yet.
TOTAL {{ "%.0f"|format(s.cost_price) }} {{ "%.0f"|format(s.sell_price) }} {{ "%.0f"|format(s.sell_price - s.cost_price) }}
{% else %}

No offers yet. Create your first one!

{% endfor %} {% if current_user.role == 'admin' %} {% endif %} {% endblock %} {% block scripts %} {% endblock %}