{% extends "base.html" %} {% block title %}{{ title }}{% endblock %} {% block content %}

{{ title }}

This page lists all the one-time use assessment links that have been generated for your clients.

Note: To avoid accidental link usage, please copy the link and paste it into a new browser tab or send it to the recipient.
{% for invitation in invitations %} {% else %} {% endfor %}
Client ID Client Assessment Generated On Status Link
{{ invitation.client_case_id or 'N/A' }} {{ invitation.client_name or 'N/A' }}
{{ invitation.recipient_email }}
{{ invitation.assessment.name }} {{ invitation.created_at.strftime('%Y-%m-%d %H:%M') }} {% if invitation.status == 'pending' %} Pending {% elif invitation.status == 'completed' %} Completed {% else %} {{ invitation.status }} {% endif %} {% if invitation.status == 'pending' %}
{% else %} Link used on {{ invitation.completed_at.strftime('%Y-%m-%d') if invitation.completed_at else 'N/A' }} {% endif %}
No assessment links found.
{% endblock %} {% block scripts %} {% endblock %}