{% extends "ui/catalog.html" %} {% load url from future %} {% load icons %} {% load bob %} {% load formats %} {% block contentarea %}
{% block content %} {% for g in groups %} {% endfor %}
Group name Count Price
{% icon 'fugue-prohibition' %} Unassigned components {{ unassigned_count }}
{{ g.type|component_model_type_icon }} {{ g.name }} {{ g.count }} {% spaceless %} {{ g.price|currency }} {% if g.per_size %} / {{ g.size_modifier}} {{ g.size_unit }} ({{ g.modified_price }} {{ CURRENCY }}/{{ g.size_unit }}) {% endif %} {% endspaceless %}
{% endblock %}
{% block info %} {% if group %} {% include 'ui/base-form.html' %} {% endif %}
{% csrf_token %} {% spaceless %} {% include 'ui/column-header.html' with label='Components' name='name' always=1 %} {% include 'ui/column-header.html' with label='Count' name='count' type='quantity'%} {% endspaceless %} {% for m in items.object_list %} {% if 'count' in columns %}{% endif %} {% endfor %}
{% if m.extra %}
{{ m.type|component_model_type_icon }} {{ m.name|default:'' }} {% icon 'fugue-information-small-white' %}
{% else %} {{ m.type|component_model_type_icon }} {{ m.name|default:'' }} {% endif %}
{{ m.count }}
{% pagination items fugue_icons=1 url_query=url_query show_all=1 %}
{% endblock %} {% endblock %}