first commit
This commit is contained in:
83
templates/modern/ausschuss_gutachter_uberblick.html
Executable file
83
templates/modern/ausschuss_gutachter_uberblick.html
Executable file
@ -0,0 +1,83 @@
|
||||
{if $action == ''}
|
||||
<html>
|
||||
<head>
|
||||
<link type="text/css" rel="stylesheet" href="templates/{$global_template}/css/styles_refill.css">
|
||||
<style type='text/css'>
|
||||
select { width:350px;}
|
||||
</style>
|
||||
<link rel="stylesheet" type="text/css" href="fancybox/jquery.fancybox-1.3.4.css" media="screen" />
|
||||
<script type="text/javascript" src="./fancybox/jquery-1.5.1.min.js"></script>
|
||||
<!-- DATEI GIBTS NICHT <script>!window.jQuery && document.write('<script src="jquery-1.4.3.min.js"><\/script>');</script>-->
|
||||
<script type="text/javascript" src="./fancybox/jquery.mousewheel-3.0.4.pack.js"></script>
|
||||
<script type="text/javascript" src="./fancybox/jquery.fancybox-1.3.4.pack.js"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() {
|
||||
$(".box").fancybox({
|
||||
'width' : '100%',
|
||||
'height' : '100%',
|
||||
'autoScale' : true,
|
||||
'transitionIn' : 'elastic',
|
||||
'transitionOut' : 'elastic',
|
||||
'type' : 'iframe'
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
</head>
|
||||
|
||||
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
|
||||
|
||||
|
||||
<table valign="top" border="0" bordercolordark="white" bordercolorlight="lightgray" cellspacing="0" width="100%">
|
||||
<tr>
|
||||
<td>
|
||||
{$ausschuss_gutachter_uberblick_text1}
|
||||
<br><br>
|
||||
<table width="100%">
|
||||
<tr>
|
||||
<td>
|
||||
<strong>{$ausschuss_gutachter_uberblick_field_name}</strong>
|
||||
</td>
|
||||
<td>
|
||||
<strong>{$ausschuss_gutachter_uberblick_field_frist}</strong>
|
||||
</td>
|
||||
<td>
|
||||
<strong>{$ausschuss_gutachter_uberblick_field_frist_abgabe}</strong>
|
||||
</td>
|
||||
<td>
|
||||
<strong>{$ausschuss_gutachter_uberblick_field_status}</strong>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
{section name=table_data1 loop=$table_data1}
|
||||
{if $smarty.section.table_data1.rownum != ''}
|
||||
<tr>
|
||||
<td>
|
||||
{$table_data1[table_data1].nachname}, {$table_data1[table_data1].vorname}
|
||||
</td>
|
||||
<td>
|
||||
{$table_data1[table_data1].frist_tag}
|
||||
</td>
|
||||
<td>
|
||||
{$table_data1[table_data1].frist_datum_abgabe}
|
||||
</td>
|
||||
<td>
|
||||
{$table_data1[table_data1].status_klartext}
|
||||
</td>
|
||||
</tr>
|
||||
{/if}
|
||||
{/section}
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
{/if}
|
Reference in New Issue
Block a user