diff options
Diffstat (limited to 'app/Template/swimlane/table.php')
-rw-r--r-- | app/Template/swimlane/table.php | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/app/Template/swimlane/table.php b/app/Template/swimlane/table.php new file mode 100644 index 00000000..ac7ed835 --- /dev/null +++ b/app/Template/swimlane/table.php @@ -0,0 +1,44 @@ +<table> + <tr> + <?php if (! isset($hide_position)): ?> + <th><?= t('Position') ?></th> + <?php endif ?> + <th class="column-70"><?= t('Name') ?></th> + <th><?= t('Actions') ?></th> + </tr> + <?php foreach ($swimlanes as $swimlane): ?> + <tr> + <?php if (! isset($hide_position)): ?> + <td>#<?= $swimlane['position'] ?></td> + <?php endif ?> + <td><?= Helper\escape($swimlane['name']) ?></td> + <td> + <ul> + <?php if ($swimlane['position'] != 0 && $swimlane['position'] != 1): ?> + <li> + <?= Helper\a(t('Move Up'), 'swimlane', 'moveup', array('project_id' => $project['id'], 'swimlane_id' => $swimlane['id']), true) ?> + </li> + <?php endif ?> + <?php if ($swimlane['position'] != 0 && $swimlane['position'] != count($swimlanes)): ?> + <li> + <?= Helper\a(t('Move Down'), 'swimlane', 'movedown', array('project_id' => $project['id'], 'swimlane_id' => $swimlane['id']), true) ?> + </li> + <?php endif ?> + <li> + <?= Helper\a(t('Rename'), 'swimlane', 'edit', array('project_id' => $project['id'], 'swimlane_id' => $swimlane['id'])) ?> + </li> + <li> + <?php if ($swimlane['is_active']): ?> + <?= Helper\a(t('Disable'), 'swimlane', 'disable', array('project_id' => $project['id'], 'swimlane_id' => $swimlane['id']), true) ?> + <?php else: ?> + <?= Helper\a(t('Enable'), 'swimlane', 'enable', array('project_id' => $project['id'], 'swimlane_id' => $swimlane['id']), true) ?> + <?php endif ?> + </li> + <li> + <?= Helper\a(t('Remove'), 'swimlane', 'confirm', array('project_id' => $project['id'], 'swimlane_id' => $swimlane['id'])) ?> + </li> + </ul> + </td> + </tr> + <?php endforeach ?> +</table>
\ No newline at end of file |