{% extends 'base.html' %} {% load static %} {% load project_templatetags %} {% block local_css %} {% endblock %} {% block title %}Manage Billing Account{% endblock %} {% block content %}

Manage Billing Account

Billing Account Details
ID: {{ billing_account_id }}
New Share
{% csrf_token %} {{ billing_account_sharing_form }}
Pending Shares
  • E-Mail
    Actions
  • {% for share in pending_shares %}
  • {{ share.user_contact_email }}
    {% csrf_token %}
  • {% endfor %}
Active Shares
  • E-Mail
    Actions
  • {% for share in consumed_shares %}
  • {{ share.user_contact_email }}
  • {% endfor %}
{% endblock %}