diff options
| author | Finn Schneider <schneider@data-quest.de> | 2026-02-23 13:20:20 +0100 |
|---|---|---|
| committer | Finn Schneider <schneider@data-quest.de> | 2026-03-13 17:25:01 +0000 |
| commit | 26615affc68368df313a311f3ce187b62688acac (patch) | |
| tree | e4c2b16173928b278c35d2d6703ac0b90894ae41 | |
| parent | 2bff2fd977ec10b3dd391002de22486716b5c994 (diff) | |
scope col
| -rw-r--r-- | app/views/evaluation/archive/index.php | 10 | ||||
| -rw-r--r-- | app/views/evaluation/pool/index.php | 10 | ||||
| -rw-r--r-- | app/views/evaluation/profiles/index.php | 22 |
3 files changed, 21 insertions, 21 deletions
diff --git a/app/views/evaluation/archive/index.php b/app/views/evaluation/archive/index.php index ed1ab1d..ea555a5 100644 --- a/app/views/evaluation/archive/index.php +++ b/app/views/evaluation/archive/index.php @@ -12,15 +12,15 @@ use Studip\Button; <caption><?= _('Archivierte Evaluationen') ?></caption> <thead> <tr> - <th style="width: 20px"> + <th style="width: 20px" scope="col"> <input type="checkbox" data-proxyfor="#evaluation_table > tbody input[type=checkbox]" data-activates="#evaluation_table tfoot button"> </th> - <th data-sort="text"><?= _('Titel') ?></th> - <th data-sort="text"><?= _('Veranstaltung') ?></th> - <th data-sort="digit"><?= _('Start') ?></th> - <th data-sort="digit"><?= _('Ende') ?></th> + <th data-sort="text" scope="col"><?= _('Titel') ?></th> + <th data-sort="text" scope="col"><?= _('Veranstaltung') ?></th> + <th data-sort="digit" scope="col"><?= _('Start') ?></th> + <th data-sort="digit" scope="col"><?= _('Ende') ?></th> </tr> </thead> <tbody> diff --git a/app/views/evaluation/pool/index.php b/app/views/evaluation/pool/index.php index b2118be..a6c9784 100644 --- a/app/views/evaluation/pool/index.php +++ b/app/views/evaluation/pool/index.php @@ -13,15 +13,15 @@ use Studip\Button; <caption><?= _('Evaluations-Vorlagen') ?></caption> <thead> <tr> - <th style="width: 20px"> + <th style="width: 20px" scope="col"> <input type="checkbox" data-proxyfor="#template_pool > tbody input[type=checkbox]" data-activates="#template_pool tfoot button"> </th> - <th data-sort="text"><?= _('Titel') ?></th> - <th data-sort="digit"><?= _('Datum') ?></th> - <th data-sort="text"><?= _('Status') ?></th> - <th class="actions"><?= _('Aktionen') ?></th> + <th data-sort="text" scope="col"><?= _('Titel') ?></th> + <th data-sort="digit" scope="col"><?= _('Datum') ?></th> + <th data-sort="text" scope="col"><?= _('Status') ?></th> + <th class="actions" scope="col"><?= _('Aktionen') ?></th> </tr> </thead> <tbody> diff --git a/app/views/evaluation/profiles/index.php b/app/views/evaluation/profiles/index.php index 3b1f672..8b4517e 100644 --- a/app/views/evaluation/profiles/index.php +++ b/app/views/evaluation/profiles/index.php @@ -13,21 +13,21 @@ use Studip\Button; <caption><?= _('Evaluationsprofile') ?></caption> <thead> <tr> - <th style="width: 20px"> + <th style="width: 20px" scope="col"> <input type="checkbox" data-proxyfor="#eval_profiles_table > tbody input[type=checkbox]" data-activates="#eval_profiles_table tfoot button"> </th> - <th data-sort="digit"><?= _('Semester') ?></th> - <th data-sort="text"><?= _('Vorlage') ?></th> - <th data-sort="text"><?= _('Alternative Vorlagen') ?></th> - <th data-sort="digit"><?= _('Start') ?></th> - <th data-sort="digit"><?= _('Ende') ?></th> - <th data-sort="text"><?= _('Anonym') ?></th> - <th data-sort="text"><?= _('Revidierbar') ?></th> - <th data-sort="text"><?= _('Zeitpunkt Einsicht') ?></th> - <th data-sort="text"><?= _('Einsicht für') ?></th> - <th data-sort="digit"><?= _('Mindestrücklauf') ?></th> + <th data-sort="digit" scope="col"><?= _('Semester') ?></th> + <th data-sort="text" scope="col"><?= _('Vorlage') ?></th> + <th data-sort="text" scope="col"><?= _('Alternative Vorlagen') ?></th> + <th data-sort="digit" scope="col"><?= _('Start') ?></th> + <th data-sort="digit" scope="col"><?= _('Ende') ?></th> + <th data-sort="text" scope="col"><?= _('Anonym') ?></th> + <th data-sort="text" scope="col"><?= _('Revidierbar') ?></th> + <th data-sort="text" scope="col"><?= _('Zeitpunkt Einsicht') ?></th> + <th data-sort="text" scope="col"><?= _('Einsicht für') ?></th> + <th data-sort="digit" scope="col"><?= _('Mindestrücklauf') ?></th> </tr> </thead> <tbody> |
