{% extends 'accounting.html' %} {% load i18n widget_tweaks %} {% block content %} {{ block.super }}
№ | {% trans 'Date' %} | {% trans 'Service' %} | {% trans 'Customer' %} | {% trans 'Worker' %} | {% trans 'Quantity' %} | {% trans 'Price' %} | {% trans 'Sum' %} |
---|---|---|---|---|---|---|---|
{{ forloop.counter }} | {{ service.created }} | {{ service.item.name }} | {{ service.customer|default:'' }} | {{ service.worker|default:'' }} | {{ service.qty }} | {{ service.price }} | {{ service.subtotal }} |
{% trans 'Total' %}: | {{ totals.qty }} | {{ totals.grand_total }} |