{% extends "timepiece/project/base.html" %} {% load url from future %} {% load timepiece_tags bootstrap_toolkit %} {% block title %}{{ object }}{% endblock title %} {% block crumbs %} {{ block.super }}
  • / {{ object }}
  • {% endblock crumbs %} {% block content %}

    {{ object }}

    {% if object.tracker_url %} {% endif %}
    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 %}
    {% url 'view_project' object.id as next_url %}

    Users

    {% if perms.crm.add_projectrelationship %}
    {% csrf_token %} {{ add_user_form|as_bootstrap:"inline" }}
    {% endif %}
    {% endblock content %}