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

    {{ project }}

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

    Users

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