{% extends "ui/report_base.html" %} {% load url from future %} {% load icons %} {% load formats %} {% load bob %} {% block contentarea %}
{% for f in form %} {% if f.label %}
{{ f }} {% if f.errors %} {% for e in f.errors %}{{ e }}{% endfor %} {% endif %}
{% endif %} {% endfor %} {% spaceless %}{% endspaceless %} {% if venture %} {% spaceless %} {% icon 'fugue-calculator' %} Export CSV {% endspaceless %} {% endif%}
{% for row in rows %} {% for comp in row.components %} {% endfor %} {% endfor %}
Device SN Barcode Monthly Cost Components
{{ row.name }} {{ row.sn }} {{ row.barcode }} {{ row.cost|currency }} name: {{ comp.name }}
count: {{ comp.count }}
price: {{ comp.price|currency }}
{% endblock %}