diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-12-14 20:48:15 -0500 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-12-14 20:48:15 -0500 |
commit | f237cdc8594dd6d80a280edf6f0b92352498ad4a (patch) | |
tree | 695039f68fdf42719784824bb091f2f7437065e0 /app/Template/board | |
parent | 4e695a9fcf65c0a9bc7db0f6dfd850f46b695d84 (diff) |
Start to improve the ui for tablets
Diffstat (limited to 'app/Template/board')
-rw-r--r-- | app/Template/board/edit.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Template/board/edit.php b/app/Template/board/edit.php index 2c3236e2..d7086504 100644 --- a/app/Template/board/edit.php +++ b/app/Template/board/edit.php @@ -16,7 +16,7 @@ </tr> <?php foreach ($columns as $column): ?> <tr> - <td><?= Helper\form_label(t('Column %d', ++$i), 'title['.$column['id'].']', array('title="column_id='.$column['id'].'"')) ?></td> + <td><?= Helper\form_label(++$i, 'title['.$column['id'].']', array('title="column_id='.$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> @@ -44,7 +44,7 @@ <input type="submit" value="<?= t('Update') ?>" class="btn btn-blue"/> </div> </form> - +<hr/> <h3><?= t('Add a new column') ?></h3> <form method="post" action="<?= Helper\u('board', 'add', array('project_id' => $project['id'])) ?>" autocomplete="off"> |