{% extends "ui/report_base.html" %} {% load url from future %} {% load icons %} {% load formats %} {% load bob %} {% load reports %} {% load i18n %} {% block contentarea %}

Ventures Report

{% trans "This report provides detailed info regarding costs for all ventures within selected time frame (with the possibility to edit the ventures afterwards)." %}
{% for f in form %}
{{ f }} {% if f.errors %} {% for e in f.errors %}{{ e }}{% endfor %} {% endif %}
{% endfor %}
{% if task_in_progress %} {% wait_for_results autoreload=1 reload_frequency=15 %} {% elif venture_data %} {% for extra_type in extra_types %} {% endfor %} {% if profile.is_staff %} {% endif %} {% for venture in venture_data %} {% for extra in venture.extras %} {% endfor %} {% if profile.is_staff %} {% endif %} {% endfor %}
Venture Department Default margin Physical device count Core count Virtual core count Cloud use Cloud cost{{ extra_type.name }}Splunk cost Hardware cost Total costActions
{% if not venture.top_level %}    {% endif %} {% icon venture.venture_icon %} {{ venture.name }} {{ venture.department|default:'' }} {{ venture.margin|default:0 }}% {{ venture.count|default:0|floatformat:2 }} {{ venture.core_count|default:0|floatformat:2 }} {{ venture.virtual_core_count|default:0|floatformat:2 }} {{ venture.cloud_use|default:0|floatformat:2 }}% {{ venture.cloud_cost|currency }} {{ extra|currency }} {{ venture.splunk_cost|currency }} {{ venture.hardware_cost|currency }} {{ venture.total|default:0|currency }} {% spaceless %} {% icon 'fugue-toolbox--pencil' %} Edit {% endspaceless %}
{% endif %}
{% endblock %}