{% extends 'base.html' %} {% load custom_tags_and_filters %} {% block title %}Bill to a different project{% endblock %} {% block content %}
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 %} {% endif %} {% endfor %} {% endif %} {% else %}You are not currently billing area access.
{% endif %} {% endblock %}