{% extends "base.html" %} {% block content %}
{{ _('Manage products and services for this project') }}
{{ goods|length }}
{{ '%.2f'|format(total_amount) }}
{{ '%.2f'|format(billable_amount) }}
{{ category_breakdown|length }}
| {{ _('Name') }} | {{ _('Category') }} | {{ _('Quantity') }} | {{ _('Unit Price') }} | {{ _('Total') }} | {{ _('Status') }} | {{ _('Actions') }} |
|---|---|---|---|---|---|---|
|
{{ good.name }}
{% if good.description %}
{{ good.description[:80] }}{% if good.description|length > 80 %}...{% endif %}
{% endif %}
{% if good.sku %}
SKU: {{ good.sku }}
{% endif %}
|
{{ good.category|capitalize }} | {{ '%.2f'|format(good.quantity) }} | {{ '%.2f'|format(good.unit_price) }} {{ good.currency_code }} | {{ '%.2f'|format(good.total_amount) }} {{ good.currency_code }} | {% if good.invoice_id %} {{ _('Invoiced') }} {% elif good.billable %} {{ _('Billable') }} {% else %} {{ _('Non-billable') }} {% endif %} |
{{ _('No extra goods found for this project') }}
{{ _('Add Your First Good') }}