{% extends 'pasapp/templates/base_template.html' %} {% block title %} My Applications {% endblock %} {% block imports %} {% load static %} {% endblock %} {% block onload %} addNextRoutes() {% endblock %} {% block content %} {% for project, applications in sections.items %}

{{project.title}}

{{project.description}}
{% if project.capacity %} Expected capacity: {{project.capacity}} {% endif %}
{% if applications %} {% load html_components %} {% application_list_professor_interactive applications comments comment_box=True %} {% else %} There are no applications for this project yet. {% endif %}
{% endfor %} {% endblock %}