{% 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 {% if customizations|get_item:"area_access_change_project_charged" == "create_new_record" %} (this will create a new record starting now) {% elif customizations|get_item:"area_access_change_project_charged" == "update_current_record" %} (this will update the project on the current record) {% endif %} ?

{% if customizations|get_item:"area_access_change_project_charged" == "ask_user" %}
{% endif %} {% 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 %}