{% extends "base.html" %} {% block content %}
Range: {{ start }} s.d. {{ end }}
| Item | Unit | Qty IN | Qty OUT |
|---|---|---|---|
| {{ r.item }} | {{ r.unit }} | {{ '%.2f'|format(r.in_qty) }} | {{ '%.2f'|format(r.out_qty) }} |
| TOTAL | {{ '%.2f'|format(totals['IN']) }} | {{ '%.2f'|format(totals['OUT']) }} | |