{% extends "timepiece/project/base.html" %} {% load url from future %} {% load timepiece_tags bootstrap_toolkit %} {% block title %}{{ object }}{% endblock title %} {% block crumbs %} {{ block.super }}
| Type | {{ object.type }} |
|---|---|
| Business | {% if perms.crm.view_business %} {{ object.business }} {% else %} {{ object.business }} {% endif %} |
| Status | {{ object.status }} |
| Billable | {{ object.billable }} |
| Point Person | {% if perms.auth.view_user %} {{ object.point_person.get_name_or_username }} {% else %} {{ object.point_person.get_name_or_username }} {% endif %} |
| Description | {{ object.description|linebreaks }} |
| Tracker URL | {{ object.tracker_url }} |
| Contracts |
{% for contract in object.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 %} |