Initial commit
This commit is contained in:
57
templates/standard/stichworte.html
Normal file
57
templates/standard/stichworte.html
Normal file
@ -0,0 +1,57 @@
|
||||
{if $action == ''}
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
||||
<meta name="mobile-web-app-capable" content="yes" />
|
||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
|
||||
<title>Sitzplan</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<link rel="stylesheet" href="templates/{$global_template}/css/styles_pc.php" type="text/css">
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<fieldset>
|
||||
<legend class="legend1" align="center">
|
||||
<b>Stichworte zum Artikel erfassen</b>
|
||||
</legend>
|
||||
<form action=?action=save method="POST" name="save">
|
||||
<br>
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td width='40%'><b>Begriff:</b></td>
|
||||
<td><input type="text" name="stichwort" size="40"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width='40%'><label for="sensitive"><b>Groß- Kleinschreibung beachten:</b></label></td>
|
||||
<td><label for="sensitive"><input type="checkbox" name="sensitive" id="sensitive"> Ja</label></td>
|
||||
</tr>
|
||||
</table>
|
||||
<p align='center'> <input type="submit" value="Abschicken" name="B1">
|
||||
</p>
|
||||
</form>
|
||||
<br>
|
||||
<p align="center">
|
||||
<b>Erfasste Stichworte</b>
|
||||
</p>
|
||||
<table width="100%" border="1" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td><b>Stichwort</b></td>
|
||||
<td width="10%"><b>Groß- Kleinschreibung beachten</b></td>
|
||||
<td width="10%" align='center'><b>Löschen</b></td>
|
||||
</tr>
|
||||
{section name=table_data loop=$table_data}
|
||||
<tr>
|
||||
<td>{$table_data[table_data].stichwort}</td>
|
||||
<td>{$table_data[table_data].sensitive}</td>
|
||||
<td width="10%" align='center'><a href="?action=del&luesid={$table_data[table_data].luesid}"><img title = 'Zuordnung löschen' border="0" height=10 src="./templates/{$global_template}/images/drop.png"></a></td>
|
||||
</tr>
|
||||
{/section}
|
||||
</table>
|
||||
|
||||
</fieldset>
|
||||
</body>
|
||||
</html>
|
||||
{/if}
|
||||
|
Reference in New Issue
Block a user