{% extends 'pasapp/base_template.html' %} {% block title %} {{project.title}} {% endblock %} {% block content %}

{{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}}
{% load custom_filters %} {% if user|is_student %} Apply to this project {% endif %} {% if project.professor.id == user.id %}

(i) {{numApplicants}} students have applied so far. View Applications.

{% else %}

(i) {{numApplicants}} students have applied so far.

{% endif %} {% if tags %}

Tags:

{% endif %} {% endblock %}