first commit
This commit is contained in:
85
templates/modern/gruppenmitglieder.html
Executable file
85
templates/modern/gruppenmitglieder.html
Executable file
@ -0,0 +1,85 @@
|
||||
{if $action == ''}
|
||||
<html>
|
||||
<head>
|
||||
<title>{$hauptframe_titel}</title>
|
||||
<link type="text/css" rel="stylesheet" href="templates/{$global_template}/css/styles_refill.css">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="fancybox/jquery.fancybox-1.3.4.css" media="screen" />
|
||||
|
||||
</head>
|
||||
|
||||
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
|
||||
|
||||
<div class="header">
|
||||
<div>
|
||||
<div>{$gruppenmitglieder_eingabe_titel}</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="pat_list_box">
|
||||
<form action="?action=save" method='post' name='gruppenmitglieder'>
|
||||
|
||||
<table valign="top" border="0" bordercolordark="white" bordercolorlight="lightgray" cellspacing="0" width="100%" height="80%">
|
||||
<tr>
|
||||
<td valign="top" >
|
||||
<table valign="top" width="100%" border=0>
|
||||
<tr>
|
||||
<td width="50%">
|
||||
<strong>Name</strong>
|
||||
</td>
|
||||
<td width="50%">
|
||||
<strong>Mail</strong>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="50%">
|
||||
<input type="text" name="mitgl_name" size="40">
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="mitgl_mail" size="40">
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td width="50%">
|
||||
<input type="submit" value="Speichern" name="B1">
|
||||
</td>
|
||||
<td width="50%">
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
|
||||
<tr>
|
||||
<td width="50%">
|
||||
<strong>Name</strong>
|
||||
</td>
|
||||
<td width="50%">
|
||||
<strong>Mail</strong>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
{section name=table_data loop=$table_data}
|
||||
<tr>
|
||||
<td width="50%">
|
||||
{$table_data[table_data].name}
|
||||
</td>
|
||||
<td width="50%">
|
||||
{$table_data[table_data].mail}
|
||||
</td>
|
||||
</tr>
|
||||
{/section}
|
||||
</table>
|
||||
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
|
||||
</form>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
{/if}
|
Reference in New Issue
Block a user