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.
17 lines
499 B
17 lines
499 B
mixin renderWeeklySummaryReport (data)
|
|
table.uk-table.uk-table-small.uk-table-responsive.no-select
|
|
thead
|
|
tr
|
|
th Project
|
|
th Client
|
|
th Sessions
|
|
th Time Worked
|
|
th Billable
|
|
tbody
|
|
each row in data
|
|
tr
|
|
td.uk-table-expand=row.project.name
|
|
td= row.project.client.name
|
|
td= formatCount(row.sessionCount)
|
|
td= numeral(row.duration).format('0:00:00')
|
|
td= numeral(row.billable).format('$0,0.00')
|