{% extends "ui/base-devices.html" %}
{% load url from future %}
{% load icons %}
{% load formats %}
{% 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 }} |
|
Owner |
{% for o in device.venture.ventureowner_set.all %}
{{ o|owner_icon }} |
{{ o.name }} |
{% endfor %}
Start |
End |
Days |
Venture |
Daily Cost |
{% for h in history %}
{% if h.start.year != 0 %}
{{ h.start|date:'Y-m-d' }}
{% endif %}
|
{% if h.end.year != 9999 %}
{{ h.end|date:'Y-m-d' }}
{% endif %}
|
{{ h.span }} |
{{ h.venture.name }} |
{{ h.daily_cost|currency:2 }} |
{% endfor %}
{% 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 %}