{% extends 'base.html' %} {% block header %}

{% block title %}{% trans %}Edit draft{% endtrans %}{% endblock %}

{% endblock %} {% block content %}
{% block left_panel %}
{% endblock %}
{% block bill_row_panel %} {% if bill_rows|length > 0 %} {% for bill_row in bill_rows %} {% endfor %}
{% trans %}Label{% endtrans %} {% trans %}Price{% endtrans %} {% trans %}Qty{% endtrans %} {% trans %}Amount{% endtrans %} {% trans %}Tax{% endtrans %} {% trans %}Action{% endtrans %}
{{ bill_row.label }} {{ bill_row.price/100 }} {{ bill_row.quantity }} {{ (bill_row.gross_amount / 100) | round(2, 'floor') }} {{ bill_row.tax_rate }} % {% trans %}Update{% endtrans %}
{% endif %} {% if edit_bill_row %}
{% endif %}
{% endblock %}
{% block mention_panel %}
{% endblock %}
{% block actions %}
{% trans %}Preview quote{% endtrans %}
{% endblock %} {% endblock %}