{% extends "layout.html" %} {% block title %}Billing{% endblock %} {% block content %}

Billing




Start must be a date in the format MM/DD/YYYY. End is an optional date in the format MM/DD/YYYY. Leave End empty to include currently running batches. If End is not empty, then no currently running batches are included. All dates search for batches that have completed within that time interval (inclusive).

Total Cost

{% if is_developer %}

Cost by Billing Project

{% for row in billing_by_project %} {% endfor %}
Billing Project Cost
{{ row['billing_project'] }} {{ row['cost'] }}

Cost by User

{% for row in billing_by_user %} {% endfor %}
User Cost
{{ row['user'] }} {{ row['cost'] }}
{% endif %}

Cost by Billing Project and User

{% for row in billing_by_project_user %} {% endfor %}
Billing Project User Cost
{{ row['billing_project'] }} {{ row['user'] }} {{ row['cost'] }}
{% endblock %}