Refactored Students View + Controller

. Now application is done via AJAX call.
. Now messages are returned to user instead of hard exits.
. Now formatting status on client side, not on serverside.

Signed-off-by: cris-technikum <[email protected]>
This commit is contained in:
Cris
2021-03-25 15:06:47 +01:00
committed by cris-technikum
parent 4450f5a473
commit 3ba4229eed
4 changed files with 304 additions and 173 deletions
+81 -1
View File
@@ -10350,7 +10350,87 @@ array(
)
)
),
array(
'app' => 'core',
'category' => 'ui',
'phrase' => 'neu',
'insertvon' => 'system',
'phrases' => array(
array(
'sprache' => 'German',
'text' => "Neu",
'description' => '',
'insertvon' => 'system'
),
array(
'sprache' => 'English',
'text' => "New",
'description' => '',
'insertvon' => 'system'
)
)
),
array(
'app' => 'core',
'category' => 'ui',
'phrase' => 'inBearbeitung',
'insertvon' => 'system',
'phrases' => array(
array(
'sprache' => 'German',
'text' => "in Bearbeitung",
'description' => '',
'insertvon' => 'system'
),
array(
'sprache' => 'English',
'text' => "in process",
'description' => '',
'insertvon' => 'system'
)
)
),
array(
'app' => 'core',
'category' => 'global',
'phrase' => 'antragWurdeGestellt',
'insertvon' => 'system',
'phrases' => array(
array(
'sprache' => 'German',
'text' => "Antrag wurde gestellt.",
'description' => '',
'insertvon' => 'system'
),
array(
'sprache' => 'English',
'text' => "Application was submitted successfully.",
'description' => '',
'insertvon' => 'system'
)
)
),
array(
'app' => 'core',
'category' => 'global',
'phrase' => 'antragBereitsGestellt',
'insertvon' => 'system',
'phrases' => array(
array(
'sprache' => 'German',
'text' => "Der Antrag wurde bereits gestellt.",
'description' => '',
'insertvon' => 'system'
),
array(
'sprache' => 'English',
'text' => "Application has already been submitted.",
'description' => '',
'insertvon' => 'system'
)
)
),
);