{% extends 'pasapp/templates/base_template.html' %} {% block title %} My Applications {% endblock %} {% block imports %} {% load static %} {% endblock %} {% block onload %} addNextRoutes() {% endblock %} {% block content %} {% load html_components %} {% load custom_filters %} {% if applications or closedApplications %}
{% csrf_token %}
    {% for i in 8|times %} {% if i <= 5 %}
  1. {% else %}
  2. {% endif %}
  3. {% endfor %}
{% csrf_token %}
    {% if offeredApplications %}

    Extended Offers

    {% for application in offeredApplications %} {% application_student application user comments|for_application:application True %} {% endfor %} {% endif %} {% if openApplications %}

    Pending Applications

    {% for application in openApplications %} {% application_student application user comments|for_application:application True %} {% endfor %} {% endif %} {% if closedApplications %}

    Closed Applications

    {% for application in closedApplications %} {% application_student application user comments|for_application:application False %} {% endfor %} {% endif %}
{% else %}

You have no applications to display yet!

{% endif %} {% endblock %}