An example template from Nag:
<tr class="<?= $style ?>"> <td width="3%" nowrap="nowrap"> <input type="checkbox" name="items[]" value="<?= $task_id; ?>" /> </td> <td width="67%" nowrap="nowrap"> <?= Horde::link(Horde::applicationUrl("view.php?task=$task_id"), _("View Task Details")) ?><?= htmlspecialchars($task['name']) ?></a> </td> <td width="15%" nowrap="nowrap"><?= strftime($conf['list']['date_format'], $task['added']); ?></td> <td width="15%" nowrap="nowrap"> <?php if ($task['due'] > 0) { echo strftime($conf['list']['date_format'], $task['due']); } else { echo _("None"); } ?> </td> </tr>
|