{% extends "base.html" %} {% block title %}{{ _('Accept Quote') }} - {{ app_name }}{% endblock %} {% block content %}

{{ _('Accept Quote') }}

{{ quote.quote_number }}

{{ _('Back to Quote') }}

{{ _('Quote Details') }}

{{ _('Title') }}
{{ quote.title }}
{{ _('Client') }}
{{ quote.client.name }}
{% if quote.total_amount %}
{{ _('Total Amount') }}
{{ "%.2f"|format(quote.total_amount) }} {{ quote.currency_code }}
{% endif %} {% if quote.hourly_rate %}
{{ _('Hourly Rate') }}
{{ "%.2f"|format(quote.hourly_rate) }} {{ quote.currency_code }}
{% endif %}

{{ _('Create Project') }}

{{ _('Accepting this quote will create a new project with the budget from the quote.') }}

{{ _('The project will be created with the budget from the quote') }}

{{ _('Cancel') }}
{% endblock %}