{% extends 'base.html' %} {% load static i18n %} {% block title %}{{ title }} - ATS{% endblock %} {% block content %}
{{ title }}
Agency: {{ access_link.assignment.agency.name }}
Job: {{ access_link.assignment.job.title }}
Current Status: {{ 'Active' if access_link.is_active else 'Inactive' }}
Expires: {{ access_link.expires_at|date:"Y-m-d H:i" }}
Access Count: {{ access_link.access_count }}
Last Accessed: {% if access_link.last_accessed %} {{ access_link.last_accessed|date:"Y-m-d H:i" }} {% else %} Never {% endif %}
{% csrf_token %}
Cancel
{% endblock %}