{% from "utils.html" import danger_button, submit_button %} {% extends "layout.html" %} {% block title %}Billing Projects{% endblock %} {% block content %}

Billing Projects

{{ submit_button('Create') }}
{% for bp in billing_projects %} {% endfor %} {% for bp in closed_projects %} {% endfor %}
Billing Project Limit Users
{{ bp['billing_project'] }}
{{ submit_button('Update') }}
{% for user in bp['users'] %}
{{ user }}
{% endfor %}
{{ submit_button('Add') }}
{{ danger_button('Close') }}
{{ bp['billing_project'] }} {{ bp['limit'] }}
{{ submit_button('Reopen') }}
{% endblock %}