{% extends "ui/catalog/base.html" %} {% load url from future %} {% load icons %} {% load bob %} {% block contentarea %}
{% block content %} {% for g in groups %} {% endfor %}
Group name Count Slots Price
{% icon 'fugue-prohibition' %} Unassigned devices {{ unassigned_count }}
{{ g.type|device_model_type_icon }} {{ g.name }} {{ g.count }} {{ g.slots }} {{ g.price }} {{ CURRENCY }}
{% endblock %}
{% block info %} {% if group %} {% include 'ui/base-form.html' %} {% endif %}
{% csrf_token %} {% spaceless %} {% include 'ui/column-header.html' with label='Devices' name='name' always=1 %} {% include 'ui/column-header.html' with label='Count' name='count' type='quantity'%} {% include 'ui/column-header.html' with label='Size' name='size' type='number'%} {% endspaceless %} {% for m in items.object_list %} {% if 'count' in columns %}{% endif %} {% if 'size' in columns %}{% endif %} {% endfor %}
{{ m.type|device_model_type_icon }} {{ m.name }}{{ m.count }}{{ m.chassis_size|default:'' }}
{% pagination items fugue_icons=1 url_query=url_query show_all=1 %}
{% endblock %} {% endblock %}