{% extends "ui/base-devices.html" %}
{% load url from future %}
{% load icons %}
{% load formats %}
{% block contentarea %}
Category |
Device count |
Total cost |
{% for i in items %}
{% if i.name %}
{{ i.name }} |
{%if i.url%}
{{ i.count|default:"0" }} |
{%else%}
{%if i.count%}
{{i.count}}
{%endif%}
{%endif%}
{{ i.cost|currency }} |
{% endif %}
{% endfor %}
{% block info %}
|
Owner |
{% for o in venture.ventureowner_set.all %}
{{ o|owner_icon }} |
{{ o.name }} |
{% endfor %}
{% if venture.department %}
{{ venture|venture_icon }} |
{{ venture.department }} |
{% endif %}
{% endblock %}
x
{% endblock %}
{% block scripts %}
{{ block.super }}
{% endblock %}