{% extends 'base.html' %} {% block extra_css %} {% endblock %} {% block content %}

Welcome back, {{ current_user.first_name }}

Here's what's happening with your exams.

Create New Exam

{{ total_exams }}

Exams Generated

{{ downloaded }}

Downloaded

{{ current_user.subscription_type|title }}

Current Plan

{% if current_user.subscription_type == 'free' %} {{ current_user.max_exams - current_user.exams_generated }} {% else %} ∞ {% endif %}

Exams Remaining
Recent Exams View All
{% if exams %}
{% for exam in exams %} {% endfor %}
Title Subject Status Date Action
{{ exam.title }} {{ exam.subject.name if exam.subject else 'N/A' }} {{ exam.status|title }} {{ exam.created_at.strftime('%Y-%m-%d') }} View
{% else %}

No exams generated yet.

Create Your First Exam
{% endif %}
Subscription
Plan {{ current_user.subscription_type|title }}
Exams Generated {{ current_user.exams_generated }} {% if current_user.subscription_type == 'free' %} / {{ current_user.max_exams }} {% endif %}
{% if current_user.subscription_expiry %}
Expires {{ current_user.subscription_expiry.strftime('%Y-%m-%d') }}
{% endif %} {% if current_user.subscription_type == 'free' %} {% endif %}
{% endblock %}