{% extends "base.html" %} {% block title %}Internship Contract List{% endblock %} {% block content %}
{{ 'Your Interns' if not is_admin else 'Total Interns (Filtered)' }}

{{ total_interns }}

All Interns
{% for title, count in supervisor_counts.items() %}
{{ title }}

{{ count }}

Interns
{% endfor %}
{% for intern in interns %} {% endfor %}
Intern Name Role Start Date End Date Allowance (USD) Supervisor Actions
{{ intern.intern_name or 'N/A' }} {{ intern.intern_role or 'N/A' }} {{ intern.start_date.strftime('%d %b %Y') if intern.start_date else 'N/A' }} {{ intern.end_date.strftime('%d %b %Y') if intern.end_date else 'N/A' }} ${{ '%.2f' % intern.allowance_amount if intern.allowance_amount is not none else '0.00' }} {{ intern.supervisor_info.get('name', 'N/A') }}
No intern contracts found.
{% if pagination %} {% endif %}
{% endblock %}