diff options
author | Frédéric Guillot <fguillot@users.noreply.github.com> | 2014-03-16 10:44:05 -0400 |
---|---|---|
committer | Frédéric Guillot <fguillot@users.noreply.github.com> | 2014-03-16 10:44:05 -0400 |
commit | e0a5045ed5f3a4a6a34d252f5251295a27d11418 (patch) | |
tree | fb9affe5aab371e64ceb6403818d6acd99203b97 /templates/board_edit.php | |
parent | 395a8a5f2a4976b80432a0d71d51d1bad3d01a83 (diff) |
Add the possiblity to reorder the column position for a board
Diffstat (limited to 'templates/board_edit.php')
-rw-r--r-- | templates/board_edit.php | 39 |
1 files changed, 32 insertions, 7 deletions
diff --git a/templates/board_edit.php b/templates/board_edit.php index 5368dede..35589bb4 100644 --- a/templates/board_edit.php +++ b/templates/board_edit.php @@ -11,13 +11,38 @@ <form method="post" action="?controller=board&action=update&project_id=<?= $project['id'] ?>" autocomplete="off"> <?php $i = 0; ?> - - <?php foreach ($columns as $column): ?> - <?= Helper\form_label(t('Column %d', ++$i), 'title['.$column['id'].']') ?> - <?= Helper\form_text('title['.$column['id'].']', $values, $errors, array('required')) ?> - <?= Helper\form_number('task_limit['.$column['id'].']', $values, $errors, array('placeholder="'.t('limit').'"')) ?> - <a href="?controller=board&action=confirm&project_id=<?= $project['id'] ?>&column_id=<?= $column['id'] ?>"><?= t('Remove') ?></a> - <?php endforeach ?> + <table> + <tr> + <th><?= t('Position') ?></th> + <th><?= t('Column title') ?></th> + <th><?= t('Task limit') ?></th> + <th><?= t('Actions') ?></th> + </tr> + <?php foreach ($columns as $column): ?> + <tr> + <td><?= Helper\form_label(t('Column %d', ++$i), 'title['.$column['id'].']') ?></td> + <td><?= Helper\form_text('title['.$column['id'].']', $values, $errors, array('required')) ?></td> + <td><?= Helper\form_number('task_limit['.$column['id'].']', $values, $errors, array('placeholder="'.t('limit').'"')) ?></td> + <td> + <ul> + <?php if ($column['position'] != 1): ?> + <li> + <a href="?controller=board&action=moveUp&project_id=<?= $project['id'] ?>&column_id=<?= $column['id'] ?>"><?= t('Move Up') ?></a> + </li> + <?php endif ?> + <?php if ($column['position'] != count($columns)): ?> + <li> + <a href="?controller=board&action=moveDown&project_id=<?= $project['id'] ?>&column_id=<?= $column['id'] ?>"><?= t('Move Down') ?></a> + </li> + <?php endif ?> + <li> + <a href="?controller=board&action=confirm&project_id=<?= $project['id'] ?>&column_id=<?= $column['id'] ?>"><?= t('Remove') ?></a> + </li> + </ul> + </td> + </tr> + <?php endforeach ?> + </table> <div class="form-actions"> <input type="submit" value="<?= t('Update') ?>" class="btn btn-blue"/> |