| 1 |
lars |
1 |
{* $Id: index.tpl 422 2008-09-08 12:11:27Z tiefland $ *}
|
|
|
2 |
{include file="header.tpl"}
|
|
|
3 |
{if $display}
|
|
|
4 |
<table width="740" cellspacing="0" cellpadding="0">
|
|
|
5 |
<tr>
|
|
|
6 |
<td valign="top">
|
|
|
7 |
<table width="662">
|
|
|
8 |
<tr>
|
|
|
9 |
<td colspan="4" class="links">Projektliste</td>
|
|
|
10 |
</tr>
|
|
|
11 |
<tr>
|
|
|
12 |
<th class="links">Projektname</th>
|
|
|
13 |
<th class="links">Projektleiter</th>
|
|
|
14 |
<th class="links">Projektzeitraum</th>
|
|
|
15 |
<th class="links">Projektort</th>
|
|
|
16 |
</tr>
|
|
|
17 |
{section loop=$projekte name="p_ind"}
|
|
|
18 |
<tr>
|
|
|
19 |
<td class="rechts" valign="top">
|
|
|
20 |
{$projekte[p_ind]->p_name}
|
|
|
21 |
<form action="{$SCRIPT_NAME}" method="post" style="display:inline;">
|
|
|
22 |
<input type="hidden" name="action" value="view">
|
|
|
23 |
<input type="hidden" name="id" value="{$projekte[p_ind]->p_id}">
|
|
|
24 |
<input type="image" src="../images/navigation/edit.gif" align="right" style="16px">
|
|
|
25 |
</form>
|
|
|
26 |
</td>
|
|
|
27 |
<td class="rechts">
|
|
|
28 |
{$projekte[p_ind]->p_leiter_name}
|
|
|
29 |
<form action="../logins/logins.php" method="post" style="display:inline;">
|
|
|
30 |
<input type="hidden" name="action" value="edit">
|
|
|
31 |
<input type="hidden" name="ID" value="{$projekte[p_ind]->p_leiter_id}">
|
|
|
32 |
<input type="image" src="../images/navigation/edit.gif" align="right" style="16px">
|
|
|
33 |
</form>
|
|
|
34 |
</td>
|
|
|
35 |
<td class="rechts">{$projekte[p_ind]->p_von} bis {$projekte[p_ind]->p_bis}</td>
|
|
|
36 |
<td class="rechts">
|
|
|
37 |
{$projekte[p_ind]->p_ort_name}
|
|
|
38 |
<form action="projekt_ort.php" method="post" style="display:inline;">
|
|
|
39 |
<input type="hidden" name="action" value="view">
|
|
|
40 |
<input type="hidden" name="id" value="{$projekte[p_ind]->p_ort_id}">
|
|
|
41 |
<input type="image" src="../images/navigation/edit.gif" align="right" style="16px">
|
|
|
42 |
</form>
|
|
|
43 |
</td>
|
|
|
44 |
</tr>
|
|
|
45 |
{/section}
|
|
|
46 |
</table>
|
|
|
47 |
</td>
|
|
|
48 |
<td width="77" align="right" valign="top">
|
|
|
49 |
{include file="buttons.tpl"}
|
|
|
50 |
</td>
|
|
|
51 |
</tr>
|
|
|
52 |
</table>
|
|
|
53 |
{else}
|
|
|
54 |
<table width="740" cellspacing="0" cellpadding="0">
|
|
|
55 |
<tr>
|
|
|
56 |
<td valign="top">
|
|
|
57 |
<table width="662" cellspacing="0" cellpadding="0">
|
|
|
58 |
<tr>
|
|
|
59 |
<td class="links">Keine Projekte vorhanden!</td>
|
|
|
60 |
</tr>
|
|
|
61 |
</table>
|
|
|
62 |
</td>
|
|
|
63 |
<td width="77" align="right" valign="top">
|
|
|
64 |
{include file="buttons.tpl"}
|
|
|
65 |
</td>
|
|
|
66 |
</tr>
|
|
|
67 |
</table>
|
|
|
68 |
{/if}
|
|
|
69 |
{include file="footer.tpl"}
|