{% for a_request in access_request_list %} {% if a_request.description %} {% endif %} {% endfor %}
Created Access Requested start Requested end Users {% if request_status == 'pending' and user.is_facility_manager %} Action {% elif request_status == 'approved' %} Approved by {% elif request_status == 'denied' %} Denied by {% endif %}
{% if a_request.id in access_request_notifications %}New {% endif %}{{ a_request.creation_time|date:'SHORT_DATETIME_FORMAT' }} {{ a_request.physical_access_level.display_value_for_select }} {{ a_request.start_time|date:'SHORT_DATETIME_FORMAT' }} {{ a_request.end_time|date:'SHORT_DATETIME_FORMAT' }}
  • {{ a_request.creator }}
  • {% for other_user in a_request.other_users.all %}
  • {{ other_user }}
  • {% endfor %}
{% if request_status == 'pending' and user.is_facility_manager %} {% elif request_status == 'pending' and a_request.creator == user %} {% elif request_status == 'approved' or request_status == 'denied' %} {{ a_request.reviewer.get_name }} {% endif %}
{% if a_request.description %}Description:
{{ a_request.description|linebreaksbr }}{% endif %}