diff --git a/tailbone/templates/shifts/timesheet.mako b/tailbone/templates/shifts/timesheet.mako index 6fff5027..45e103c0 100644 --- a/tailbone/templates/shifts/timesheet.mako +++ b/tailbone/templates/shifts/timesheet.mako @@ -20,5 +20,9 @@ ${employee.worked_hours_display} +<%def name="render_employee_day_total(day)"> + ${day['worked_hours_display']} + + ${self.timesheet_wrapper()} diff --git a/tailbone/templates/shifts/timesheet_edit.mako b/tailbone/templates/shifts/timesheet_edit.mako index bcaae769..96035663 100644 --- a/tailbone/templates/shifts/timesheet_edit.mako +++ b/tailbone/templates/shifts/timesheet_edit.mako @@ -79,6 +79,10 @@ ${employee.worked_hours_display} +<%def name="render_employee_day_total(day)"> + ${day['worked_hours_display']} + + <%def name="edit_form()"> ${h.form(url('timesheet.employee.edit'), id='timetable-form')} ${h.csrf_token(request)}