1 {$forms.templatesForm.open}
2 <table cellspacing="0" cellpadding="7" border="0" width="720">
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>
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>
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>
25 <tr><td align="center"><br>{$forms.templatesForm.btn_add.control}</td></tr>
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>
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>
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>
46 <tr><td align="center"><br>{$forms.templatesForm.btn_add.control}</td></tr>
52 {$forms.templatesForm.close}