{% extends 'pasapp/templates/base_template.html' %} {% block title %} {{project.title}} {% endblock %} {% block imports %} {% load static %} {% endblock %} {% block onload %} addNextRoutes() {% endblock %} {% block content %} {% load html_components %}

{{project.title}}

{{project.professor.first_name}} {{project.professor.last_name}}

{{project.description}}

Status: {{project.status}}
{% load custom_filters %} {% if user|is_student %} {% if student_application %}

You have already applied to this project.

{% else %} {% if project.status == 'Open' %} Apply to this project {% endif %} {% endif %} {% endif %}

🛈 {{numApplicants}} students have applied so far.
{% if numOffered %} Offers extended: {{numOffered}}
{% endif %} {% if project.capacity %} Expected capacity: {{project.capacity}} {% endif %}

{% if projectTags %} Tags: {% tagbox_categorized projectTags %} {% endif %} {% if student_application %}

Your application:

{% application_student student_application user comments|for_application:student_application True %} {% endif %} {% endblock %}