diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-10-23 20:48:02 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-10-23 20:48:02 -0400 |
commit | 9aca556fc6db6c23c4c95a0e30425fe966003f0e (patch) | |
tree | 8671a9b251d4001ba759c9d906fe92d5da81c312 | |
parent | ffeffa54f9ad322e8b1a79d9ab5270854d712ea2 (diff) |
Avoid to disable the default swimlane during renaming when there is no other activated swimlane
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | app/Template/board/table_container.php | 2 | ||||
-rw-r--r-- | app/Template/swimlane/index.php | 56 |
3 files changed, 31 insertions, 28 deletions
@@ -21,6 +21,7 @@ Improvements: Bug fixes: * People should not see any tasks during a search when they are not associated to a project +* Avoid to disable the default swimlane during renaming when there is no other activated swimlane Version 1.0.19 -------------- diff --git a/app/Template/board/table_container.php b/app/Template/board/table_container.php index b2d475ac..e30f9ce8 100644 --- a/app/Template/board/table_container.php +++ b/app/Template/board/table_container.php @@ -1,6 +1,6 @@ <div id="board-container"> <?php if (empty($swimlanes) || empty($swimlanes[0]['nb_columns'])): ?> - <p class="alert alert-error"><?= t('There is no column in your project!') ?></p> + <p class="alert alert-error"><?= t('There is no column or swimlane activated in your project!') ?></p> <?php else: ?> <?php if (isset($not_editable)): ?> diff --git a/app/Template/swimlane/index.php b/app/Template/swimlane/index.php index 95b462d8..9502cffd 100644 --- a/app/Template/swimlane/index.php +++ b/app/Template/swimlane/index.php @@ -1,3 +1,25 @@ +<div class="page-header"> + <h2><?= t('Change default swimlane') ?></h2> +</div> +<form method="post" action="<?= $this->url->href('swimlane', 'change', array('project_id' => $project['id'])) ?>" autocomplete="off"> + + <?= $this->form->csrf() ?> + <?= $this->form->hidden('id', $default_swimlane) ?> + + <?= $this->form->label(t('Rename'), 'default_swimlane') ?> + <?= $this->form->text('default_swimlane', $default_swimlane, array(), array('required', 'maxlength="50"')) ?><br/> + + <?php if (! empty($active_swimlanes) || $default_swimlane['show_default_swimlane'] == 0): ?> + <?= $this->form->checkbox('show_default_swimlane', t('Show default swimlane'), 1, $default_swimlane['show_default_swimlane'] == 1) ?> + <?php else: ?> + <?= $this->form->hidden('show_default_swimlane', $default_swimlane) ?> + <?php endif ?> + + <div class="form-actions"> + <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> + </div> +</form> + <?php if (! empty($active_swimlanes)): ?> <div class="page-header"> <h2><?= t('Active swimlanes') ?></h2> @@ -5,6 +27,13 @@ <?= $this->render('swimlane/table', array('swimlanes' => $active_swimlanes, 'project' => $project)) ?> <?php endif ?> +<?php if (! empty($inactive_swimlanes)): ?> +<div class="page-header"> + <h2><?= t('Inactive swimlanes') ?></h2> +</div> +<?= $this->render('swimlane/table', array('swimlanes' => $inactive_swimlanes, 'project' => $project, 'hide_position' => true)) ?> +<?php endif ?> + <div class="page-header"> <h2><?= t('Add a new swimlane') ?></h2> </div> @@ -40,30 +69,3 @@ <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> </div> </form> - -<div class="page-header"> - <h2><?= t('Change default swimlane') ?></h2> -</div> -<form method="post" action="<?= $this->url->href('swimlane', 'change', array('project_id' => $project['id'])) ?>" autocomplete="off"> - - <?= $this->form->csrf() ?> - <?= $this->form->hidden('id', $default_swimlane) ?> - - <?= $this->form->label(t('Rename'), 'default_swimlane') ?> - <?= $this->form->text('default_swimlane', $default_swimlane, array(), array('required', 'maxlength="50"')) ?><br/> - - <?php if (! empty($active_swimlanes)): ?> - <?= $this->form->checkbox('show_default_swimlane', t('Show default swimlane'), 1, isset($default_swimlane['show_default_swimlane']) && $default_swimlane['show_default_swimlane'] == 1) ?> - <?php endif ?> - - <div class="form-actions"> - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> - </div> -</form> - -<?php if (! empty($inactive_swimlanes)): ?> -<div class="page-header"> - <h2><?= t('Inactive swimlanes') ?></h2> -</div> -<?= $this->render('swimlane/table', array('swimlanes' => $inactive_swimlanes, 'project' => $project, 'hide_position' => true)) ?> -<?php endif ?>
\ No newline at end of file |