{% extends "timepiece/base.html" %} {% load url from future %} {% load timepiece_tags %} {% block title %}Dashboard{% endblock title %} {% block bodyid %}dashboard{% endblock bodyid %} {% block breadcrumb %}{% endblock breadcrumb %} {% block extrajs %} {% endblock extrajs %} {% block content %} {% if perms.entries.can_clock_in %}
Project | Hours Assigned | Hours Worked | Progress |
---|---|---|---|
{{ data.project }} | {{ data.assigned|humanize_hours:"{hours:02d}:{minutes:02d}" }} | {{ data.worked|humanize_hours:"{hours:02d}:{minutes:02d}" }} |
No entries or assignments exist for this week.
{% endif %}No entries exist for this week.
{% endif %}Name | Project | Since |
---|---|---|
{{ entry.user.first_name }} {{ entry.user.last_name }} | {{ entry.activity.name }} for {{ entry.project }} | {{ entry.start_time|time }} {% ifnotequal entry.start_time.date today %} {% if entry.start_time.date < week_start or entry.start_time.date > week_end %} on {{ entry.start_time|date:'M j' }} {% else %} on {{ entry.start_time|date:"l" }} {% endif %} {% endifnotequal %} |
Currently there are no other users with an active entry.
{% endif %}