{% extends "ui/base-devices.html" %}
{% load url from future %}
{% load icons %}
{% load formats %}
{% block contentarea %}
Category |
Count now / in time range |
Total cost in time range |
{% for i in items %}
{% if i.name %}
{{ i.name }} |
{% if i.url %}
{{ i.count_now|default:"0" }}
{% else %}
{% if i.count_now %}
{{i.count_now}}
{% endif %}
{% endif %}
{% if i.count %}
{% if i.url or i.count_now %} / {% endif %}
{{i.count|floatformat:2}}
{% endif %}
|
{{ i.cost|currency }} |
{% endif %}
{% endfor %}
{% block info %}
|
Owner |
{% for o in venture.all_ownerships %}
{{ o|owner_icon }} |
{{ o.owner }} |
{% endfor %}
{% if venture.department %}
{{ venture|venture_icon }} |
{{ venture.department }} |
{% endif %}
{% icon 'fugue-lighthouse' %} |
business segment:
{{ venture.business_segment|default:"―" }}
|
{% icon 'fugue-bank' %} |
profit center:
{{ venture.profit_center|default:"―" }}
|
{% endblock %}
x
{% endblock %}
{% block scripts %}
{{ block.super }}
{% endblock %}