{% extends 'base.html' %} {% block title %}Log in to an area{% endblock %} {% block content %}

Log in to an access controlled area

{% if error_message %}
You cannot login to this area because:
{{ error_message }}
{% endif %}
{% csrf_token %}
{% if projects|length == 1 %} You only have one active project. Area access will be billed to: {{ projects.0 }} {% else %}

Charge area access to which project?

{% for p in projects %}
{% endfor %} {% endif %}
{% if areas|length == 1 %} You are only able to access one area: {{ areas.0 }} {% else %}

Log in to which area?

{% for a in areas %}
{% endfor %} {% endif %}
{% endblock %}