summaryrefslogtreecommitdiffstats
path: root/app/view/issue.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/view/issue.php')
-rw-r--r--app/view/issue.php13
1 files changed, 10 insertions, 3 deletions
diff --git a/app/view/issue.php b/app/view/issue.php
index 01a9f5f..4ca0e3b 100644
--- a/app/view/issue.php
+++ b/app/view/issue.php
@@ -51,6 +51,7 @@ require_once "class/issue.class.php";
<?php function issue(\issue $i) : void { ?>
<?php $m = $i->getOPMesg(); ?>
+ <?php $s = $i->getParent(); ?>
<div id="issueModal-<?=$i->guid?>" class="modal fade" tabindex="-1" role="dialog">
<div class="modal-dialog modal-lg" role="document">
@@ -61,9 +62,15 @@ require_once "class/issue.class.php";
</button>
<h4 class="modal-title">
- <span class="glyphicon glyphicon-inbox"></span>
- <?=$i->name?>
- <small>#<?=$i->numb?></small>
+ <span class="glyphicon glyphicon-inbox"></span> <?=$i->name?>&nbsp;&nbsp;
+
+ <small>
+ <?php if ($s->objtype == "stage") { ?>
+ <span class="glyphicon glyphicon-tasks"></span> <?=$s->name?>&nbsp;&nbsp;
+ <?php } ?>
+
+ #<?=$i->numb?> <?=$i->guid?>
+ </small>
</h4>
</div>