{{ # AGREEMENT }}
{% if estimate.requires_agreement? && estimate.agreed_to == false %}
  

{{ account.company.name }} has specified that this estimate requires agreement by you before work may continue.

Please read through the terms of agreement and indicate your choice at the bottom of this page.

{% endif %}

{{ account.company.name }}

{% include 'company' for account.company %}

{{ # DETAILS }}
{{ # LEFT DETAILS }}
{{ # INVOICE DATE }}
{{ 'Client' | make_label }} {% include 'company' for estimate.company %}
{{ 'Project' | make_label }} {{ estimate.project.name }}
{{ 'Estimate Date' | make_label }} {{ estimate.created_on | format_date }} ({{ estimate.created_on | format_date_in_english }})
{{ # RIGHT DETAILS }}
{{ 'Estimated Cost' | make_label }}
{% if estimate.has_worst_case_items %} {{ estimate.price_best | format_money }} - {{ estimate.price_worst | format_money }} {% else %} {{ estimate.price_best | format_money }} {% endif %}
{{ # INTRO }} {% if estimate.intro_text != blank %}

Introduction

{{ estimate.intro_text | format_text }}
{% endif %} {{ # LINE ITEMS FOR ESTIMATE }} {% if estimate.line_items == null %} {% else %} {{ # LINE ITEM LOOP }} {% for item in estimate.line_items %} {{ # ESTIMATES }} {{ # TAX }} {{ # TOTAL PRICES }} {% if item.has_worst_case %} {% else %} {% endif %} {% endfor %} {% endif %} {{ # TABLE FOOTER }} {{ # SALES TAX }} {% if estimate.sales_tax != null %} {% endif %} {% if estimate.sales_tax_2 != null %} {% endif %} {{ # ESTIMATES }} {{ # TAXES }} {{ # COSTS }}
Item Description Estimate Tax Final Price
No items have been created yet.
{{ item.title }} {% if item.description != blank %}
{{ item.description | format_text }}
{% endif %}
{{ # GENERIC ITEM }} {% if item.type == 'Generic' %} {% if item.has_worst_case %} {{ item.quantity_low }} - {% endif %} {{ item.quantity_estimate }} {{ item.unit_label }} @ {{ item.rate | format_money }} ea {{ % TASK ITEM }} {% elsif item.type == 'Task' %} {% if item.has_worst_case %} {{ item.time_best | format_hours }} - {% endif %} {{ item.estimate_time | format_hours }} hours @ {{ item.rate | format_money }} ea {{ # PRODUCT ITEM }} {% elsif item.type == 'Product' %} {{ item.quantity_estimate }} {{ item.unit_label }} @ {{ item.rate | format_money }} ea {% endif %} {{ # FLAT FEE }} {% if item.flat_fee_in_cents > 0 %}
{{ item.flat_fee | format_money }} flat fee {% endif %}
{% if item.is_taxable %} * {% else %}   {% endif %}
Low {{ item.price_best | format_money }}
High {{ item.price_worst | format_money }}
{{ item.price_best | format_money }}
Tax 1 - {{ estimate.sales_tax }}%
Tax 2 - {{ estimate.sales_tax_2 }}%

{{ # TERMS }}

Terms of Agreement

{% if estimate.agreement_text != blank %} {{ estimate.agreement_text | format_text }} {% else %}

No agreement terms have been set for this estimate.

{% endif %}