first commit
This commit is contained in:
113
templates/modern/ausschuss_sitzung.html
Executable file
113
templates/modern/ausschuss_sitzung.html
Executable file
@ -0,0 +1,113 @@
|
||||
{if $action == ''}
|
||||
<html>
|
||||
<head>
|
||||
<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" />
|
||||
<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',
|
||||
onCleanup : function() {
|
||||
return window.location.reload();
|
||||
}
|
||||
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<br />
|
||||
<br />
|
||||
<div class="header">
|
||||
<div>
|
||||
<div>{$ausschuss_sitzung_titel}</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="pat_list_box">
|
||||
{if $ausschuss_sitzung_pflichtfelder == '1'}
|
||||
<table width="70%" class="errorTable" align="center">
|
||||
<tr>
|
||||
<td>
|
||||
<img src="templates/{$global_template}/images/pflichtfelder/achtung_gross.gif">
|
||||
</td>
|
||||
<td><b>Achtung!</b><br>
|
||||
{$ausschuss_sitzung_error_text}
|
||||
</td>
|
||||
</tr>
|
||||
</table><br>
|
||||
{/if}
|
||||
<table cellspacing="1" cellpadding="1" width="90%" border="0">
|
||||
<tr>
|
||||
<td width="10%" valign="top">
|
||||
<strong>{$ausschuss_sitzung_field_datum1}</strong>
|
||||
</td>
|
||||
<td width="10%" valign="top">
|
||||
<strong>{$ausschuss_sitzung_field_zeit1}</strong>
|
||||
</td>
|
||||
<td width="10%" valign="top">
|
||||
<strong>{$ausschuss_sitzung_field_raum1}</strong>
|
||||
</td>
|
||||
<td valign="top">
|
||||
<strong>{$ausschuss_sitzung_field_beschreibung1}</strong>
|
||||
</td>
|
||||
<td width="10%" valign="top" align="center">
|
||||
<strong>{$ausschuss_sitzung_field_vorlage1}</strong>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
{section name=outer_loop loop=$outer_loop}
|
||||
{if $smarty.section.outer_loop.rownum != ''}
|
||||
|
||||
<tr>
|
||||
<td width="10%" valign="top">
|
||||
{$outer_loop[outer_loop].datum_form}
|
||||
</td>
|
||||
<td width="10%" valign="top">
|
||||
{$outer_loop[outer_loop].zeit_form}
|
||||
</td>
|
||||
<td width="10%" valign="top">
|
||||
{$outer_loop[outer_loop].raum}
|
||||
</td>
|
||||
<td valign="top">
|
||||
{$outer_loop[outer_loop].beschreibung}
|
||||
</td>
|
||||
<td width="10%" valign="top" align="center">
|
||||
<a href="prints/sitzung_pdf.php?isid={$outer_loop[outer_loop].isid}&output=D"><img src="templates/{$global_template}/images/ico_pdf.gif" border="0"></a>
|
||||
</td>
|
||||
</tr>
|
||||
{/if}
|
||||
{/section}
|
||||
|
||||
<tr>
|
||||
<td colspan="5" align="center">
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td colspan="5" align="center">
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
{/if}
|
Reference in New Issue
Block a user