{% extends "timepiece/time-sheet/base.html" %} {% load url from future %} {% load timepiece_tags %} {% block title %}Dashboard{% endblock title %} {% block bodyid %}dashboard{% endblock bodyid %} {% block breadcrumb %}{% endblock breadcrumb %} {% block content %} {% if perms.timepiece.can_clock_in %}
Project | Hours Assigned | Hours Worked | Progress | {% for data in project_progress %}
---|---|---|---|
{{ data.project }} | {{ data.assigned|convert_hours_to_seconds|humanize_seconds:"%H:%M" }} | {{ data.worked|convert_hours_to_seconds|humanize_seconds:"%H:%M" }} |
No entries or assignments exist for this week.
{% endif %}No entries exist for this week.
{% endif %}Name | Project | Since | {% for entry in others_active_entries %}
---|---|---|
{{ entry.user.first_name }} {{ entry.user.last_name }} | {{ entry.activity.name }} for {{ entry.project }} | {{ entry.start_time|date:"g:i A" }} {% 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:"N j" }} {% else %} on {{ entry.start_time|date:"l" }} {% endif %} {% endifnotequal %} |
Currently there are no other users with an active entry.
{% endif %}