mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-28 01:55:38 -05:00
16 lines
360 B
Text
16 lines
360 B
Text
|
if !total
|
||
|
span.small-details(data-i18n='teacher.no_progress')
|
||
|
| No Progress
|
||
|
else
|
||
|
.fraction-students.small-details
|
||
|
= complete
|
||
|
| /
|
||
|
= total
|
||
|
span.spl(data-i18n='teacher.students')
|
||
|
| Students
|
||
|
.percent-students.small-details
|
||
|
= Math.floor(complete / total * 100)
|
||
|
| %
|
||
|
span.spl(data-i18n='teacher.complete')
|
||
|
| Complete
|