{% extends 'base.html' %} {% load comments %} {% load markup %} {% block title %} {% if instance %} Detail view for project ID #{{ instance.id }} created by {{ instance.originator.first_name }} {{ instance.originator.last_name }} {% if not instance.is_active %}(Inactive Project){% endif %} {% else %} Nazareth College ITS Project{% if user %}s originated by {{ filteruser.get_full_name }} ({{ filteruser.username }}){% else %} List{% endif %} {% endif %} {% endblock %} {% block content %} {% if messages or request.GET.c %}
{% endif %} {% if instance %} {% get_comment_count for instance as comment_count %}{% ifequal instance.originator request.user %}{% if instance.is_active %}Modify this project | {% endif %}{% endifequal %}{% if user_has_projects %} Back to your projects | {% endif %}Back to all projects
This project is marked as inactive, so no new comments can be added now.
{% endif %} {% else %}To view project details or add comments, click the project title or ID for the project you wish to view.
ID | Title | Category | Priority | Status | Needed | Originator | Contact | Department |
---|---|---|---|---|---|---|---|---|
{{ project.id }} | {{ project.title }} | {{ project.category }} | {{ project.get_priority_display }} | {{ project.status }} | {{ project.date_needed }} | {{ project.originator.get_full_name }} | {{ project.contact_person.get_full_name }} | {{ project.department }} |
There are no such projects. Would you like to create a new project?
{% endif %} {% endif %} {% endblock %}
Post Your Comment
Posting as {{ user.get_full_name }} (if you're not {{ user.get_full_name }}, click here)