{% extends "ui/base-devices.html" %} {% load url from future %} {% load icons %} {% load formats %} {% load bob %} {% block content %}
{% icon 'fugue-store' %} Venture {{ device.venture.name }}
{% icon 'fugue-mask' %} Role {{ device.venture_role.name }}
{% icon 'fugue-receipt-text' %} Monthly Cost {{ device.cached_cost|currency }}
{% for o in device.venture.all_ownerships %} {% endfor %}
Owner
{{ o|owner_icon }} {{ o.owner }}
{% for h in history_page.object_list %} {% endfor %}
Start End Days Venture Cores Daily Cost
{% if h.start > ALWAYS_DATE %} {{ h.start|date:'Y-m-d' }} {% endif %} {% if h.end < FOREVER_DATE %} {{ h.end|date:'Y-m-d' }} {% endif %} {{ h.span }} {{ h.venture.name }} {{ h.cores }} {{ h.daily_cost|currency:2 }}
{% pagination history_page fugue_icons=1 url_query=url_query query_variable_name=query_variable_name %} {% if splunk_size %}
Splunk Usage (MiBs) Monthly Cost Daily Cost
{{ splunk_size }} {{ splunk_monthly_cost|currency:2 }} {{ splunk_daily_cost|currency:2 }} {{ h.daily_cost|currency:2 }}
{% endif %}
{% endblock content %}