{% extends 'timepiece/time-sheet/base.html' %} {% load timepiece_tags %} {% load url from future %} {% block title %}Current Contracts{% endblock %} {% block content %}

Current Contracts

{% for contract in contracts %} {% endfor %}
Project Time Frame Hours Worked Contract Hours Percent Complete
{{ contract.project }} {{ contract.start_date|date }} — {{ contract.end_date }} {{ contract.hours_worked }} {{ contract.num_hours }} {% widthratio contract.hours_worked contract.num_hours 100 %}%
{% endblock %}