Files
admin
auswertung
bootstrap
classes
config
controller
dashboard
dashboard_bak
datepicker
jquery
js
language
lib
media
mpdf
sql
survey
templates
modern
admin
old
bewerber_daten.html
datencheck.html
dokverw.html
ergebnisse.html
kand_del.html
liste_tn.html
logout.html
mail_test.html
parameter.html
praxisstellen_edit.html
praxisstellen_news.html
rangliste2.html
tanimport.html
termine.html_bcc
termine_kandidat.html
upload.html
2022-01-12_sitz_koord.html
2022-01-12_sitzplatz.html
2022-01-12_unzugeordnet.html
administration_frame.html
gd_verwaltung.html
hauptframe.html
index.html
indexframe.html
liste_qr_name.html
liste_tn.html
logout.html
menu_administration.html
menu_qr.html
menu_survey.html
menu_verwaltung.html
menu_youtube.html
parameter.html
qr_code.html
qr_frame.html
result_latest.html
sitz_koord.html
sitzplatz.html
survey_erfassen.html
survey_frame.html
termine.html
titel.html
unzugeordnet.html
verwaltung_frame.html
warteliste.html
youtube_frame.html
auswertung
css
dashboard
images
js
survey
abmeldung.html
templates_c
test
config.inc.php
survey/templates/modern/admin/old/parameter.html
2023-03-14 14:47:50 +01:00

118 lines
2.9 KiB
HTML

{if $action == ''}
<html>
<head>
<link type="text/css" rel="stylesheet" href="../templates/{$global_template}/css/styles_refill.css">
<style>
input{
width:330px;
}
.row_0 {
background-color: #FFFFFF;
}
.row_1 {
background-color: #E1E8F1;
}
</style>
</head>
<body>
<form action="?action=save" method='post' name='save'>
{if $termine_error == '1'}
<table width="70%" class="errorTable" align="center">
<tr>
<td>
<img src="../templates/{$global_template}/images/pflichtfelder/achtung_gross.gif">
</td>
<td><b>Achtung!</b><br>
{$termine_error_text}
</td>
</tr>
</table>
<br />
{/if}
<fieldset>
<legend>
<b>Systemparameter</b>
</legend>
<br />
<br />
<table width="100%" cellspacing="0" cellpadding="0">
{section name=table_data1 loop=$table_data1}
<tr>
<td min-width="40%" class="row_{$table_data1[table_data1].zaehler}" height='30'>
{$table_data1[table_data1].beschreibung}{if $table_data1[table_data1].pid == 1} <b>Verfügbare Rest-TANs: {$parameter_anzahltan}</b>{/if}
</td>
<td class="row_{$table_data1[table_data1].zaehler}" height='30'>
<input align="right" type="text" name="{$table_data1[table_data1].pid}" value="{$table_data1[table_data1].wert}">
</td>
</tr>
{/section}
</table>
</p>
<br />
<p align='center'>
<input type='submit' name='senden' value="speichern">
</p>
<br />
</fieldset>
</form>
<br />
<br />
<br />
<br />
</body>
</html>
{/if}
{if $action == 'save'}
{if $parameter_inserterr == '1'}
<html>
<head>
<link type="text/css" rel="stylesheet" href="../templates/{$global_template}/css/styles_refill.css">
</head>
<body>
<fieldset>
<legend>Fehler beim der Speicherung</legend>
<br />
<br />
Es traten folgende Fehler auf:
<br />
{$parameter_reason}
<br />
</fieldset>
</form>
<br />
<br />
<br />
<br />
</body>
</html>
{/if}
{if $parameter_inserterr == '2'}
<html>
<head>
<link type="text/css" rel="stylesheet" href="../templates/{$global_template}/css/styles_refill.css">
</head>
<body>
<fieldset>
<legend>Speicherung</legend>
<br />
<br />
<p align="center">
Die Daten wurden übernommen.
</p>
<br />
<br />
</fieldset>
</form>
<br />
<br />
<br />
<br />
</body>
</html>
{/if}
{/if}