{% extends "layout.html" %}
{% block title %}Billing Limits{% endblock %}
{% block content %}
Billing Project Limits
{% if open_billing_projects %}
Open Projects
Billing Project |
Accrued Cost |
Limit |
{% for row in open_billing_projects %}
{{ row['billing_project'] }} |
{{ row['accrued_cost'] }} |
{% if is_developer %}
|
{% else %}
{{ row['limit'] }} |
{% endif %}
{% endfor %}
{% endif %}
{% if closed_billing_projects %}
Closed Projects
Billing Project |
Accrued Cost |
Limit |
{% for row in closed_billing_projects %}
{{ row['billing_project'] }} |
{{ row['accrued_cost'] }} |
{% if is_developer %}
|
{% else %}
{{ row['limit'] }} |
{% endif %}
{% endfor %}
{% endif %}
{% endblock %}