diff options
Diffstat (limited to 'app/view')
-rw-r--r-- | app/view/datalsts.php | 2 | ||||
-rw-r--r-- | app/view/issue.php | 40 |
2 files changed, 26 insertions, 16 deletions
diff --git a/app/view/datalsts.php b/app/view/datalsts.php index b80de78..298d036 100644 --- a/app/view/datalsts.php +++ b/app/view/datalsts.php @@ -163,7 +163,7 @@ require_once "view/formctrl.php"; <span class="glyphicon glyphicon-chevron-up"></span> </button> - <button type="submit" name="input[closeIssue]" class="btn btn-sm btn-default" title="Close issue"> + <button type="submit" name="input[closeIssue]" class="btn btn-sm btn-success" title="Close issue"> <span class="glyphicon glyphicon-ok"></span> </button> </div> diff --git a/app/view/issue.php b/app/view/issue.php index 4ca0e3b..fbd180a 100644 --- a/app/view/issue.php +++ b/app/view/issue.php @@ -122,22 +122,32 @@ require_once "class/issue.class.php"; <?=\formctrl\hidden( "issue", $i->guid )?> <?=\formctrl\textarea( "New message", "mesg", 5 )?> - <div class="btn-group pull-right"> - <button type="submit" name="input[postMesg]" class="btn btn-primary" title="Post message"> - <span class="glyphicon glyphicon-envelope"></span> - </button> - - <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 class="btn-toolbar pull-right"> + <div class="btn-group"> + <button type="submit" name="input[postMesg]" class="btn btn-primary" title="Post message"> + <span class="glyphicon glyphicon-envelope"></span> + </button> + + <button type="submit" name="input[closeIssue]" class="btn btn-success" 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> + + <button type="button" class="btn btn-default" data-toggle="collapse" data-target="#assignCollapse-<?=$i->guid?>" title="Assign issue"> + <span class="glyphicon glyphicon-share-alt"></span> + </button> + </div> - <button type="button" class="btn btn-default" data-toggle="collapse" data-target="#assignCollapse-<?=$i->guid?>" title="Assign issue"> - <span class="glyphicon glyphicon-share-alt"></span> - </button> + <?php if (\user::getCurrent()->isAssignedTo($i)) { ?> + <div class="btn-group"> + <button type="submit" name="input[signoff]" class="btn btn-warning" title="Signoff issue"> + <span class="glyphicon glyphicon-ok"></span> + </button> + </div> + <?php } ?> </div> <div class="collapse" id="assignCollapse-<?=$i->guid?>"> |