{% 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}}

{% if project.professor.id == user.id %} Edit this project {% endif %}

{{project.description}}

Status: {{project.status}}

🛈 {{applications.count}} students have applied so far.
{% if project.capacity %} Expected capacity: {{project.capacity}} {% endif %}

{% if projectTags %} Tags: {% tagbox_categorized projectTags %} {% endif %} {% if project.professor.id == user.id %} {% load html_components %} {% application_list_professor_interactive applications comments comment_box=True %} {% endif %} {% endblock %}