diff options
author | Malf Furious <m@lfurio.us> | 2018-10-22 23:10:45 -0400 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2018-10-22 23:10:45 -0400 |
commit | 4d132743eb82ddae2b8c0541d216815e523955d4 (patch) | |
tree | cd96a17a34e8539f38882ce680d8ca30db41cfb6 /app/view | |
parent | bf257897042321e91f7489d0a43f8d35aa3006d7 (diff) | |
download | scrott-4d132743eb82ddae2b8c0541d216815e523955d4.tar.gz scrott-4d132743eb82ddae2b8c0541d216815e523955d4.zip |
pad: Add on-page button to open new issue
First button added to the header of pad views is to open new issues.
This interface is still very crude and subject to change in the near
future.
Signed-off-by: Malf Furious <m@lfurio.us>
Diffstat (limited to '')
-rw-r--r-- | app/view/pad.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/view/pad.php b/app/view/pad.php index c9f30fc..6a2b7f5 100644 --- a/app/view/pad.php +++ b/app/view/pad.php @@ -41,6 +41,10 @@ require_once "view/issue.php"; <h1> <?=datalsts\objHeadCircle($pad, 100)?> <?=$pad->name?> + + <button type="button" class="btn btn-success" data-toggle="modal" data-target="#newIssueModal"> + <span class="glyphicon glyphicon-plus"></span> Open Issue + </button> </h1> </div> </div> |