c1a8d5b4ba93a31145edef7ce3bf52f84f47279c
[timetracker.git] / WEB-INF / templates / templates.tpl
1 {$forms.templatesForm.open}
2 <table cellspacing="0" cellpadding="7" border="0" width="720">
3   <tr>
4     <td valign="top">
5       <table cellspacing="1" cellpadding="3" border="0" width="100%">
6 {if $inactive_templates}
7         <tr><td class="sectionHeaderNoBorder">{$i18n.form.templates.active_templates}</td></tr>
8 {/if}
9         <tr>
10           <td class="tableHeader" width="45%">{$i18n.label.thing_name}</td>
11           <td class="tableHeader" width="45%">{$i18n.label.description}</td>
12           <td class="tableHeader" width="5%">{$i18n.label.edit}</td>
13           <td class="tableHeader" width="5%">{$i18n.label.delete}</td>
14         </tr>
15     {foreach $active_templates as $template}
16         <tr bgcolor="{cycle values="#f5f5f5,#ffffff"}">
17           <td>{$template['name']|escape}</td>
18           <td>{$template['description']|escape}</td>
19           <td><a href="template_edit.php?id={$template['id']}">{$i18n.label.edit}</a></td>
20           <td><a href="template_delete.php?id={$template['id']}">{$i18n.label.delete}</a></td>
21         </tr>
22     {/foreach}
23       </table>
24       <table width="100%">
25         <tr><td align="center"><br>{$forms.templatesForm.btn_add.control}</td></tr>
26       </table>
27 {if $inactive_templates}
28       <table cellspacing="1" cellpadding="3" border="0" width="100%">
29         <tr><td class="sectionHeaderNoBorder">{$i18n.form.tasks.inactive_tasks}</td></tr>
30         <tr>
31           <td class="tableHeader" width="45%">{$i18n.label.thing_name}</td>
32           <td class="tableHeader" width="45%">{$i18n.label.description}</td>
33           <td class="tableHeader" width="5%">{$i18n.label.edit}</td>
34           <td class="tableHeader" width="5%">{$i18n.label.delete}</td>
35         </tr>
36     {foreach $inactive_templates as $template}
37         <tr bgcolor="{cycle values="#f5f5f5,#ffffff"}">
38           <td>{$template['name']|escape}</td>
39           <td>{$template['description']|escape}</td>
40           <td><a href="template_edit.php?id={$template['id']}">{$i18n.label.edit}</a></td>
41           <td><a href="template_delete.php?id={$template['id']}">{$i18n.label.delete}</a></td>
42         </tr>
43     {/foreach}
44       </table>
45       <table width="100%">
46         <tr><td align="center"><br>{$forms.templatesForm.btn_add.control}</td></tr>
47       </table>
48 {/if}
49     </td>
50   </tr>
51 </table>
52 {$forms.templatesForm.close}