diff options
author | Julian Maurice <julian.maurice@biblibre.com> | 2018-08-09 19:45:51 +0200 |
---|---|---|
committer | Julian Maurice <julian.maurice@biblibre.com> | 2018-08-09 19:45:51 +0200 |
commit | ae3ade0908bae350488260ee5d878a2ffbff605a (patch) | |
tree | 747db7edaca2fcb6d3c23594437b995528790ced /app/Template/category/edit.php | |
parent | efd64d842d82404612baef58d9debe1af7515a66 (diff) |
Allow to associate project categories to colors
The color is then used as background in the board and list views
Diffstat (limited to 'app/Template/category/edit.php')
-rw-r--r-- | app/Template/category/edit.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/Template/category/edit.php b/app/Template/category/edit.php index cd8ee7ba..446ce7b5 100644 --- a/app/Template/category/edit.php +++ b/app/Template/category/edit.php @@ -11,5 +11,8 @@ <?= $this->form->label(t('Description'), 'description') ?> <?= $this->form->textEditor('description', $values, $errors, array('tabindex' => 2)) ?> + <?= $this->form->label(t('Color'), 'color_id') ?> + <?= $this->form->select('color_id', array('' => t('No color')) + $colors, $values, $errors, array(), 'color-picker') ?> + <?= $this->modal->submitButtons() ?> </form> |