diff options
author | Malf Furious <m@lfurio.us> | 2018-11-01 00:10:48 -0400 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2018-11-01 00:10:48 -0400 |
commit | a6853e8a130cfe8f65a154a613f0a7217dd2df0a (patch) | |
tree | da8da49bb9501afae79b053f8087af8cd27a5e31 | |
parent | 61d5b3e37b4dc6da4f7da48751b741ad49245cb1 (diff) | |
download | scrott-a6853e8a130cfe8f65a154a613f0a7217dd2df0a.tar.gz scrott-a6853e8a130cfe8f65a154a613f0a7217dd2df0a.zip |
Add advance button to issue message form
If this submit button is used, the message will be posted as usual, then
the issue will be moved to the next stage in the pipeline.
Signed-off-by: Malf Furious <m@lfurio.us>
-rw-r--r-- | app/view/issue.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/view/issue.php b/app/view/issue.php index a0e2535..67f5627 100644 --- a/app/view/issue.php +++ b/app/view/issue.php @@ -122,6 +122,10 @@ require_once "class/issue.class.php"; <button type="submit" name="input[closeIssue]" class="btn btn-default" title="Close issue"> <span class="glyphicon glyphicon-ok"></span> </button> + + <button type="submit" name="input[advIssue]" class="btn btn-default" title="Advance issue"> + <span class="glyphicon glyphicon-chevron-up"></span> + </button> </div> <?=\formctrl\file( "Attachment", "attachment" )?> |