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

Consultant Dashboard

Welcome, {{ current_user.username }}. Manage your clients, assessments, and reports.

My Clients

View your clients and assign new assessments.

Manage Clients
Generated Links

View and copy the one-time use assessment links you have generated.

View Links
Client Reports

Access and review completed assessment reports for your clients.

View Reports
My Assessment Requests

Track the status of your requests for paid assessments.

Manage Requests
My Profile

Update your registration number, contact details, and logo for reports.

Manage Profile
Available Assessments

Free assessments are unlimited. Paid assessments show remaining credits.

{% for row in credit_summary %} {% endfor %}
Assessment Type Approved Assigned Remaining
{{ row.assessment.name }} {{ 'Free' if row.is_free else 'Paid' }} {{ row.approved if row.approved is not none else '-' }} {{ row.assigned if row.assigned is not none else '-' }} {{ row.remaining if row.remaining is not none else 'Unlimited' }}
{% endblock %}