diff options
author | Malf Furious <m@lfurio.us> | 2016-06-08 23:50:42 -0400 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2016-06-08 23:50:42 -0400 |
commit | 6c9c352c91814775c6b56c43dd4837a8f3718e86 (patch) | |
tree | fe5715fc6ebeb0fea23864f9637796b0dad897ef /app/view | |
parent | 3f58919204a6d21111b6ff00ccec1e2a9dfac040 (diff) | |
download | scrott-6c9c352c91814775c6b56c43dd4837a8f3718e86.tar.gz scrott-6c9c352c91814775c6b56c43dd4837a8f3718e86.zip |
Start design for group view
Diffstat (limited to 'app/view')
-rw-r--r-- | app/view/obj/group.view.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/app/view/obj/group.view.php b/app/view/obj/group.view.php index 3c0a1cb..734a826 100644 --- a/app/view/obj/group.view.php +++ b/app/view/obj/group.view.php @@ -22,6 +22,26 @@ <body> <?php include "view/common/topp.view.php"; ?> + + <div class="container"> + <div class="well well-lg"> + <div class="row"> + <div class="col-md-4"> + <h1><?=$mod->group->name?></h1> + <img src="<?=$mod->owner->getHeadImage()?>" alt="<?=$mod->owner->getDisplayName()?>" class="img-circle" height="50" /> + + <?php if (count($mod->members)) { ?> + <span class="glyphicon glyphicon-plus"></span> + <?php } ?> + + <?php foreach ($mod->members as $member) { ?> + <img src="<?=$member->getHeadImage()?>" alt="<?=$member->getDisplayName()?>" class="img-circle" height="50" /> + <?php } ?> + </div> + </div> + </div> + </div> + <?php include "view/common/foot.view.php"; ?> </body> </html> |