{% 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 Items') }} {{ quote.items.count() if quote.items else 0 }}

{% for item in quote.items %}
{{ "%.2f"|format(item.total_amount) }}
{% endfor %}
{{ _('Subtotal') }}: {{ "%.2f"|format(quote.subtotal) if quote.subtotal else '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 %} {% endblock %}