You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
522 B
20 lines
522 B
extends layout/main
|
|
block view-content
|
|
|
|
include task/components/grid
|
|
include report/components/weekly-summary
|
|
|
|
section.uk-section.uk-section-muted.uk-section-small
|
|
.uk-container
|
|
if weeklyEarnings.length > 0
|
|
+renderWeeklySummaryReport(weeklyEarnings)
|
|
else
|
|
div No time worked this week.
|
|
|
|
section.uk-section.uk-section-default.uk-section-small
|
|
.uk-container
|
|
+renderTaskGrid(
|
|
taskGrid.pendingTasks,
|
|
taskGrid.activeTasks,
|
|
taskGrid.finishedTasks,
|
|
)
|