{% extends "base.html" %} {% from "components/ui.html" import page_header %} {% block title %}{{ _('Edit Quote') }} - {{ app_name }}{% endblock %} {% block content %} {% set breadcrumbs = [ {'text': 'Quotes', 'url': url_for('quotes.list_quotes')}, {'text': quote.quote_number, 'url': url_for('quotes.view_quote', quote_id=quote.id)}, {'text': 'Edit'} ] %} {{ page_header( icon_class='fas fa-file-contract', title_text='Edit Quote', subtitle_text=quote.quote_number, breadcrumbs=breadcrumbs, actions_html='Back' ) }}

{{ _('Basic Information') }}

{{ _('Client cannot be changed') }}

{{ _('Quote line items') }} 0

{{ _('Services, labor, and catalog lines') }}

{% for item in quote.items if (item.line_kind or 'item') == 'item' %}
{{ "%.2f"|format(item.total_amount) }}
{% endfor %}
{{ _('Line items subtotal') }}: 0.00

{{ _('Costs') }} 0

{{ _('One-off costs (e.g. travel, materials)') }}

{% for item in quote.items if (item.line_kind or 'item') == 'expense' %}
{% endfor %}
{{ _('Costs subtotal') }}: 0.00

{{ _('Extra goods') }} 0

{{ _('Products, licenses, hardware') }}

{% for item in quote.items if (item.line_kind or 'item') == 'good' %}
{% endfor %}
{{ _('Goods subtotal') }}: 0.00
{{ _('Subtotal (all quote lines)') }} 0.00

{{ _('Financial Details') }}

{{ _('Payment Terms') }}

{{ _('Discount') }}

{{ _('Additional Information') }}

{{ _('These notes are only visible to your team') }}

{{ _('These terms will be visible to the client') }}

{{ _('Cancel') }}
{% endblock %} {% block scripts_extra %} {% include 'quotes/_edit_quote_form_scripts.html' %} {% endblock %}