{% extends 'base.html' %} {% load custom_tags_and_filters %} {% block title %}Area access{% endblock %} {% block extrahead %} {% load static %} {% endblock %} {% block content %}

Area access

You can manually create an area access record under extraordinary circumstances.

View area access records for:
Date range:
Area:
{{ area_select_field }}
{% button type="view" value="View access records" submit=True %}
{% if access_records %} {% for x in access_records %} {% endfor %}
Area Identifier User Project Start End
{{ x.area }} {{ x.id }} {{ x.customer }} {{ x.project }} {{ x.start }} {{ x.end|default:"In progress" }}
{% else %} {% if start or end %} No access records exist {% if start and end %}between {{ start }} and {{ end }}{% elif start %}after {{ start }}{% else %}before {{ end }}{% endif %}. {% endif %} {% endif %}
{% endblock %}