2023-03-09 11:22:13 +01:00

78 lines
2.5 KiB
HTML
Executable File

<html>
<head>
<title>{$status_titel}</title>
<link type="text/css" rel="stylesheet" href="templates/{$global_template}/css/styles_refill.css">
</head>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
<div class="header">
<div>
<div>{$status_titel}</div>
</div>
</div>
<div class="pat_list_box">
<p>
<table border="0" bordercolordark="white" bordercolorlight="lightgray" cellspacing="0" width="90%" height="90%">
<tr>
<td align="center" valign="top">
<table width="100%">
<tr>
<td>
<strong>ID</strong>
</td>
<td>
<strong>Betreff</strong>
</td>
<td>
<strong>Eingangsdatum</strong>
</td>
{if $status_id == '100'}
<td>
<strong>Sitzungsdatum</strong>
</td>
{/if}
<td>
<strong>Einreicher</strong>
</td>
<td align="center">
<strong>Bearbeiten</strong>
</td>
</tr>
{section name=table_data1 loop=$table_data1}
{if $smarty.section.table_data1.rownum >= '1'}
<tr>
<td>
{$table_data1[table_data1].vid}
</td>
<td>
{$table_data1[table_data1].betreff}
</td>
<td>
{$table_data1[table_data1].erfass_dat_form}
</td>
{if $table_data1[table_data1].status_id == '100'}
<td>
{$table_data1[table_data1].sitzungsdat}
</td>
{/if}
<td>
{$table_data1[table_data1].nachname}, {$table_data1[table_data1].vorname}
</td>
<td align="center">
<a href="{$table_data1[table_data1].dateiname}?id={$table_data1[table_data1].vid}"><img title = "Vorschlag bearbeiten" border="0" height=10 src="templates/{$global_template}/images/edit.png"></a>
</td>
</tr>
{/if}
{/section}
</table>
</td>
</tr>
</table>
</div>
</body>
</html>