diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-04-19 14:48:12 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-04-19 14:48:12 -0400 |
commit | 1891e87d035c235550b5889da585e166cf49502f (patch) | |
tree | a6100a70184e635788aaed4071ca968a0fde3088 /app/Template/project/edit.php | |
parent | 370b5a0fd7c1dba60e3b973506ba087adba42be0 (diff) |
Add Postmark integration (inbound emails for task creation)
Diffstat (limited to 'app/Template/project/edit.php')
-rw-r--r-- | app/Template/project/edit.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/Template/project/edit.php b/app/Template/project/edit.php index c1f98315..ffd9be00 100644 --- a/app/Template/project/edit.php +++ b/app/Template/project/edit.php @@ -9,6 +9,10 @@ <?= $this->formLabel(t('Name'), 'name') ?> <?= $this->formText('name', $values, $errors, array('required', 'maxlength="50"')) ?> + <?= $this->formLabel(t('Identifier'), 'identifier') ?> + <?= $this->formText('identifier', $values, $errors, array('maxlength="50"')) ?> + <p class="form-help"><?= t('The project identifier is an optional alphanumeric code used to identify your project.') ?></p> + <?= $this->formLabel(t('Description'), 'description') ?> <div class="form-tabs"> |