27 lines
768 B
Plaintext
27 lines
768 B
Plaintext
extends ../../../templates/base.pug
|
|
|
|
block content
|
|
table.table.table-bordered.table-striped.table-hover
|
|
thead
|
|
tr
|
|
th Course name
|
|
th Detected type
|
|
th Count in hours
|
|
th Count in TD equivalent
|
|
tbody
|
|
each course in courses
|
|
tr
|
|
td #{course.name}
|
|
td #{course.type}
|
|
td #{course.time}
|
|
td #{course.tdEquivalent}
|
|
tr
|
|
td
|
|
strong #{total.name}
|
|
td
|
|
strong #{total.type}
|
|
td
|
|
strong #{total.time}
|
|
td
|
|
strong #{total.tdEquivalent}
|