aboutsummaryrefslogtreecommitdiff
path: root/app/views/evaluation/archive/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/evaluation/archive/index.php')
-rw-r--r--app/views/evaluation/archive/index.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/app/views/evaluation/archive/index.php b/app/views/evaluation/archive/index.php
index ac17f68..f559bf5 100644
--- a/app/views/evaluation/archive/index.php
+++ b/app/views/evaluation/archive/index.php
@@ -19,6 +19,7 @@ use Studip\Button;
</th>
<th data-sort="text" scope="col"><?= _('Titel') ?></th>
<th data-sort="text" scope="col"><?= _('Veranstaltung') ?></th>
+ <th data-sort="digit" scope="col"><?= _('Nr.') ?></th>
<th data-sort="text"><?= _('Evaluierte') ?></th>
<th data-sort="digit" scope="col"><?= _('Start') ?></th>
<th data-sort="digit" scope="col"><?= _('Ende') ?></th>
@@ -44,6 +45,9 @@ use Studip\Button;
$assignment->course_metadata['course_title'] : '') ?>
</td>
<td>
+ <?= htmlReady($assignment->course_metadata['sem_nr']) ?>
+ </td>
+ <td>
<?php if (isset($assignment->course_metadata['evaluated_persons'])) : ?>
<?php foreach ($assignment->course_metadata['evaluated_persons'] as $person) : ?>
<?= htmlReady($person) ?><br/>
@@ -60,7 +64,7 @@ use Studip\Button;
<?php endforeach ?>
<?php else : ?>
<tr>
- <td colspan="6" style="text-align: center">
+ <td colspan="7" style="text-align: center">
<?= _('Es stehen keine Evaluationen zur Verfügung.') ?>
</td>
</tr>
@@ -68,7 +72,7 @@ use Studip\Button;
</tbody>
<tfoot>
<tr>
- <td colspan="6">
+ <td colspan="7">
<?= Button::create(_("Löschen"), "bulkdelete", [
'formaction' => $controller->bulk('delete'),
'data-confirm' => _("Wirklich löschen?")