{% extends 'base.html' %} {% load custom_tags_and_filters %} {% block title %}Bill to a different project{% endblock %} {% block content %}

Bill area access to a different project

{% if error %}
{{ error }}
{% endif %} {% if user.in_area %}

You are billing {{ user.area_access_record.area.name }} access to the project named {{ user.billing_to_project }} since {{ user.area_access_record.start }}.

{% if user.active_project_count > 1 %}

Would you like to bill area access to a different project?

{% for project in user.active_projects %} {% if user.billing_to_project != project %}
{% csrf_token %}
{% endif %} {% endfor %} {% endif %} {% else %}

You are not currently billing area access.

{% endif %} {% endblock %}