diff options
author | Malf Furious <m@lfurio.us> | 2018-10-27 17:37:17 -0400 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2018-10-27 17:37:17 -0400 |
commit | 91dc4d19fbd5a6621488552d75757ed80e092a9e (patch) | |
tree | 0ec1f22a7f56a7acf014318ea7288489dad8131a /app/view/datalsts.php | |
parent | cb29c30f07b40bbd2031e0b3893e44a87213331e (diff) | |
download | scrott-91dc4d19fbd5a6621488552d75757ed80e092a9e.tar.gz scrott-91dc4d19fbd5a6621488552d75757ed80e092a9e.zip |
Cleanup appearance of issueListItem
This was left in a messy state. I'm just cleaning it up a little bit
for now for the release.
Signed-off-by: Malf Furious <m@lfurio.us>
Diffstat (limited to 'app/view/datalsts.php')
-rw-r--r-- | app/view/datalsts.php | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/app/view/datalsts.php b/app/view/datalsts.php index b0564b3..2bbb44e 100644 --- a/app/view/datalsts.php +++ b/app/view/datalsts.php @@ -131,20 +131,7 @@ require_once "class/issue.class.php"; <tr class="issueListItem" data-guid="<?=$i->guid?>"> <!-- TODO --> <td class="col-md-2"><?=$i->guid?> (#<?=$i->numb?>)</td> - <td class="col-md-5"><?=$i->name?></td> - <td class="col-md-3"><?=objHeadCircle(\user::getCurrent(), 32)?>TODO HEADS</td> - - <td class="col-md-2"> - <div class="btn-group"> - <button type="button" class="btn btn-default"> - <span class="glyphicon glyphicon-circle-arrow-up"></span> - </button> - - <button type="button" class="btn btn-success"> - <span class="glyphicon glyphicon-ok"></span> - </button> - </div> - </td> + <td class="col-md-10"><?=$i->name?></td> </tr> <?php } ?> |