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

Billing Project Limits

{% if open_billing_projects %}

Open Projects

{% for row in open_billing_projects %} {% if is_developer %} {% else %} {% endif %} {% endfor %}
Billing Project Accrued Cost Limit
{{ row['billing_project'] }} {{ row['accrued_cost'] }}
{{ row['limit'] }}
{% endif %} {% if closed_billing_projects %}

Closed Projects

{% for row in closed_billing_projects %} {% if is_developer %} {% else %} {% endif %} {% endfor %}
Billing Project Accrued Cost Limit
{{ row['billing_project'] }} {{ row['accrued_cost'] }}
{{ row['limit'] }}
{% endif %} {% endblock %}