32 lines
1.8 KiB
HTML
32 lines
1.8 KiB
HTML
{if $action == ''}
|
|
<html>
|
|
<head>
|
|
<link type="text/css" rel="stylesheet" href="../templates/{$global_template}/css/styles_refill.css">
|
|
</head>
|
|
<body>
|
|
<form action="?action=edit" method='post' name='ausgabe'>
|
|
{section name=table_data1 loop=$table_data1}
|
|
{$table_data1[table_data1].nachname}, {$table_data1[table_data1].vorname} <a href="?action=del&bid={$table_data1[table_data1].bid}&reihe={$koord_reihe}&platz={$koord_platz}&tid={$koord_tid}"><img title = 'Zuordnung löschen' border="0" height=10 src="../templates/{$global_template}/images/drop.png"></a> {if $table_data1[table_data1].favorit == 0}
|
|
<a href="?action=fav&status=0&vorname={$table_data1[table_data1].vorname}&nachname={$table_data1[table_data1].nachname}&tid={$koord_tid}&reihe={$koord_reihe}&platz={$koord_platz}"><img title = 'Standardplatz löschen' border="0" height=10 src="../templates/{$global_template}/images/favorit_red.png"></a>{/if}{if $table_data1[table_data1].favorit == 1}
|
|
<a href="?action=fav&status=1&vorname={$table_data1[table_data1].vorname}&nachname={$table_data1[table_data1].nachname}&tid={$koord_tid}&reihe={$koord_reihe}&platz={$koord_platz}"><img title = 'Als Standardplatz setzen' border="0" height=10 src="../templates/{$global_template}/images/favorit.png"></a>{/if}<br>
|
|
{/section}
|
|
</form>
|
|
</body>
|
|
</html>
|
|
{/if}
|
|
|
|
{if $action == 'del'}
|
|
<html>
|
|
<head>
|
|
<link type="text/css" rel="stylesheet" href="../templates/{$global_template}/css/styles_refill.css">
|
|
<script type="text/javascript">
|
|
function reload_unzugeordnet() {
|
|
var iframe = parent.document.getElementById('unzugeordnet');
|
|
iframe.src = iframe.src;
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload='reload_unzugeordnet();'>
|
|
</body>
|
|
</html>
|
|
{/if} |