Add settings option to define the default task color

This commit is contained in:
Frederic Guillot
2015-07-19 14:14:05 -04:00
parent 9eeb7d1820
commit d1bfc29f1b
25 changed files with 65 additions and 5 deletions

View File

@@ -6,6 +6,9 @@
<?= $this->form->csrf() ?>
<?= $this->form->label(t('Default task color'), 'default_color') ?>
<?= $this->form->select('default_color', $colors, $values, $errors) ?>
<?= $this->form->label(t('Default columns for new projects (Comma-separated)'), 'board_columns') ?>
<?= $this->form->text('board_columns', $values, $errors) ?><br/>
<p class="form-help"><?= t('Default values are "%s"', $default_columns) ?></p>