diff options
| author | Francois Ferrand <thetypz@gmail.com> | 2015-02-24 14:20:34 +0100 |
|---|---|---|
| committer | Francois Ferrand <thetypz@gmail.com> | 2015-02-24 14:21:23 +0100 |
| commit | dedf425e8168b2c38e8566a3d407f77fb11cc001 (patch) | |
| tree | 1ea3e6bbb6bce46c34ade9cb9ee216fc7a63a718 /app/Template/project/edit.php | |
| parent | 0450d86a18b1bc16b88bf3d3540a00eb9318203e (diff) | |
Add project description field.
Description is shown in a popup when hovering the 'information' icon, like column description,
which is shown in project list on dashboard and in board's title.
This is useful to document the categories and colors used in the project.
Diffstat (limited to 'app/Template/project/edit.php')
| -rw-r--r-- | app/Template/project/edit.php | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/app/Template/project/edit.php b/app/Template/project/edit.php index a1b945cd..37b03fe1 100644 --- a/app/Template/project/edit.php +++ b/app/Template/project/edit.php @@ -9,7 +9,28 @@ <?= $this->formLabel(t('Name'), 'name') ?> <?= $this->formText('name', $values, $errors, array('required', 'maxlength="50"')) ?> + <?= $this->formLabel(t('Description'), 'description') ?> + + <div class="form-tabs"> + + <div class="write-area"> + <?= $this->formTextarea('description', $values, $errors) ?> + </div> + <div class="preview-area"> + <div class="markdown"></div> + </div> + <ul class="form-tabs-nav"> + <li class="form-tab form-tab-selected"> + <i class="fa fa-pencil-square-o fa-fw"></i><a id="markdown-write" href="#"><?= t('Write') ?></a> + </li> + <li class="form-tab"> + <a id="markdown-preview" href="#"><i class="fa fa-eye fa-fw"></i><?= t('Preview') ?></a> + </li> + </ul> + </div> + <div class="form-help"><a href="http://kanboard.net/documentation/syntax-guide" target="_blank" rel="noreferrer"><?= t('Write your text in Markdown') ?></a></div> + <div class="form-actions"> <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> </div> -</form>
\ No newline at end of file +</form> |
