diff options
author | Malf Furious <m@lfurio.us> | 2018-10-27 17:31:23 -0400 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2018-10-27 17:31:23 -0400 |
commit | cb29c30f07b40bbd2031e0b3893e44a87213331e (patch) | |
tree | b9ac230d0be46017c74be44e5fe1d5e237382b66 | |
parent | 8ee07502cc84bb878efaf637947d543689eb38bf (diff) | |
download | scrott-cb29c30f07b40bbd2031e0b3893e44a87213331e.tar.gz scrott-cb29c30f07b40bbd2031e0b3893e44a87213331e.zip |
Replace pad and group view heads
Since there is currently no way to set heads for these objects, I am
replacing them with the appropriate glyphicon.
Signed-off-by: Malf Furious <m@lfurio.us>
-rw-r--r-- | app/view/group.php | 2 | ||||
-rw-r--r-- | app/view/pad.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/view/group.php b/app/view/group.php index eba9e0a..014a560 100644 --- a/app/view/group.php +++ b/app/view/group.php @@ -34,7 +34,7 @@ require_once "view/datalsts.php"; <div class="row"> <div class="col-md-12"> <h1> - <?=datalsts\objHeadCircle($group, 100)?> + <span class="glyphicon glyphicon-th"></span> <?=$group->name?> </h1> </div> diff --git a/app/view/pad.php b/app/view/pad.php index 6a2b7f5..a9c8508 100644 --- a/app/view/pad.php +++ b/app/view/pad.php @@ -39,7 +39,7 @@ require_once "view/issue.php"; <div class="row"> <div class="col-md-12"> <h1> - <?=datalsts\objHeadCircle($pad, 100)?> + <span class="glyphicon glyphicon-edit"></span> <?=$pad->name?> <button type="button" class="btn btn-success" data-toggle="modal" data-target="#newIssueModal"> |