{% extends 'user_dashboard_base.html' %} {% block content %}

Your Area

{% if applications %} {% for application in applications %}
{% if application.status == 'Pending' %}

Fingers Crossed. We want make you wait for next update, {{ user.first_name }}!

Your application dey for pending, but no worry, our team go soon review am.

{% elif application.status == 'Paid' %}

Great News For You, {{ user.first_name }}!

This wan na better news oh. We don accept your application. Check your email for more details and see you in class.

{% elif application.status == 'Cancelled' %}

We are sorry to inform you, {{ user.first_name }}.

Chai, We no fit accept Your application this time. The matter really tire us. but if you feel say we no suppose reject the application, abeg send us Message make we look the matter well again.

{% endif %}
{% endfor %} {% else %}

No applications found.

You never apply for any course oo. Abeg go see our course for courses page

{% endif %}

Courses Wey you don apply for

{% for application in applications %} {% endfor %}
Deadline to Register Course Name Start Date Date of Application Status Fees Scholarship details
{{ application.course.deadline_date }} {{ application.course.title }} {{ application.course.start_date }} {{ datetime.now().strftime("%d %b") }} {% if application.status == 'Pending' %} Pending {% elif application.status == 'Paid' %} Paid {% elif application.status == 'Cancelled' %} Cancelled {% endif %} ${{ application.course.cost }} Full Scholarship
{% endblock %}