set all automatic tags to readonly, add icon lock to automatic tags

This commit is contained in:
ma0068
2026-04-17 10:47:45 +02:00
parent c7b25e6632
commit 39f1716ae2
3 changed files with 21 additions and 30 deletions
+14 -14
View File
@@ -133,23 +133,23 @@ $config['students_tab_order'] = [
$config['stv_prestudent_tags'] = [
'prioone' => ['readonly' => false],
'priotwo' => ['readonly' => true],
'priotwo' => ['readonly' => false],
'hinweis' => ['readonly' => false],
'hinweis_assistenz' => ['readonly' => true],
'hinweis_kf' => ['readonly' => true],
'hinweis_assistenz' => ['readonly' => false],
'hinweis_kf' => ['readonly' => false],
'hinweis_lehrende' => ['readonly' => false],
'hinweis_stg_kf' => ['readonly' => true],
'hinweis_stg_kf' => ['readonly' => false],
'finished_stg' => ['readonly' => false],
'finished_kf' => ['readonly' => false],
'inwork_kf' => ['readonly' => false],
'dd_auto' => ['readonly' => false],
'wh_auto' => ['readonly' => false],
'prewh_auto' => ['readonly' => false], //when readonly kein rendering für automatisierte tags
'out_auto' => ['readonly' => false],
'zgv_auto' => ['readonly' => false],
'wiedereinstieg_auto' => ['readonly' => false],
'stbtr_erh_auto' => ['readonly' => false],
'beitr_befr_auto' => ['readonly' => false],
'jgv_auto' => ['readonly' => false],
'nachteilausgl_auto' => ['readonly' => false],
'dd_auto' => ['readonly' => true],
'wh_auto' => ['readonly' => true],
'prewh_auto' => ['readonly' => true],
'out_auto' => ['readonly' => true],
'zgv_auto' => ['readonly' => true],
'wiedereinstieg_auto' => ['readonly' => true],
'stbtr_erh_auto' => ['readonly' => true],
'beitr_befr_auto' => ['readonly' => true],
'jgv_auto' => ['readonly' => true],
'nachteilausgl_auto' => ['readonly' => true],
];