{% extends "timepiece/project/base.html" %} {% load url from future %} {% load timepiece_tags markup bootstrap_toolkit %} {% block title %}{{ project }}{% endblock %} {% block crumbs %} {{ block.super }}
Type | {{ project.type }} |
---|---|
Business | {% if perms.timepiece.view_business %} {{ project.business }} {% else %} {{ project.business }} {% endif %} |
Status | {{ project.status }} |
Billable | {{ project.billable }} |
Point Person | {% if perms.auth.view_user %} {{ project.point_person.get_name_or_username }} {% else %} {{ project.point_person.get_name_or_username }} {% endif %} |
Description | {{ project.description|linebreaks }} |
Tracker URL | {{ project.tracker_url }} |
Contracts |
{% for contract in project.contracts.all %}
{{ contract }}
({{ contract.start_date|date:'M j, Y'}} - {{ contract.end_date|date:'M j, Y'}})
{% empty %} This project is not associated with any contracts. {% endfor %} |