blob: 255024d0ae3b5f3ee08b1e0af6d79267f4e79681 (
plain)
1
2
3
4
5
6
7
8
9
|
<?php
/**
* @var Course $course
*/
?>
<label>
<input name="evaluation_courses[]" type="checkbox" value="<?= htmlReady($course->id) ?>"
aria-label="<?= htmlReady(_('Evaluation zuweisen')) ?>">
</label>
|