diff options
author | M <m@lfurio.us> | 2015-11-29 17:56:48 -0500 |
---|---|---|
committer | M <m@lfurio.us> | 2015-11-29 17:56:48 -0500 |
commit | 32569e09783e442415f76e0b54b20f084843b120 (patch) | |
tree | 724dc9288de56e8ce0ae3c16e1ec4d4c548308aa /app/view/sysconf | |
parent | 7de4383f0d7e5b3db8eb69e34795dec251ae842e (diff) | |
download | scrott-32569e09783e442415f76e0b54b20f084843b120.tar.gz scrott-32569e09783e442415f76e0b54b20f084843b120.zip |
+ Created sysconf group modal
Diffstat (limited to 'app/view/sysconf')
-rw-r--r-- | app/view/sysconf/default.view.php | 5 | ||||
-rw-r--r-- | app/view/sysconf/group.modal.view.php | 31 |
2 files changed, 33 insertions, 3 deletions
diff --git a/app/view/sysconf/default.view.php b/app/view/sysconf/default.view.php index a4dade9..7febbf6 100644 --- a/app/view/sysconf/default.view.php +++ b/app/view/sysconf/default.view.php @@ -20,13 +20,12 @@ <body> <?php include "view/sysconf/user.modal.view.php"; ?> + <?php include "view/sysconf/group.modal.view.php"; ?> <div class="container"> <div class="jumbotron"> <h2 class="text-center"> <a href="#" data-toggle="modal" data-target="#userModal"><span class="glyphicon glyphicon-user"></span></a> - - <a href="#" data-toggle="modal" data-target="#modalUser"><span class="glyphicon glyphicon-user"></span></a> - <a href="#" data-toggle="modal" data-target="#modalGroup"><span class="glyphicon glyphicon-th"></span></a> + <a href="#" data-toggle="modal" data-target="#groupModal"><span class="glyphicon glyphicon-th"></span></a> <a href="#" data-toggle="modal" data-target="#modalPad"><span class="glyphicon glyphicon-edit"></span></a> <a href="#" data-toggle="modal" data-target="#modalStage"><span class="glyphicon glyphicon-tasks"></span></a> <a href="#" data-toggle="modal" data-target="#modalIssue"><span class="glyphicon glyphicon-inbox"></span></a> diff --git a/app/view/sysconf/group.modal.view.php b/app/view/sysconf/group.modal.view.php new file mode 100644 index 0000000..cd05642 --- /dev/null +++ b/app/view/sysconf/group.modal.view.php @@ -0,0 +1,31 @@ +<div id="groupModal" class="modal fade" tabindex="-1" role="dialog"> + <div class="modal-dialog" role="document"> + <div class="modal-content"> + <div class="modal-header"> + + <button type="button" class="close" data-dismiss="modal"> + <span aria-hidden="true">×</span> + </button> + + <h4 class="modal-title">User Groups</h4> + + </div> + + <div class="modal-body"> + <p>Groups make sharing objects and collaborating easier. Instead of creating your + own pad and adding each of your team members to it individualy, create a + group-owned pad. With the appropriate permissions set, all group members will be + able to use the pad. This also solves issues where a shared pad is owned by a + single user whose account gets closed. Instead pads and other objects are safe as + long as the group exists. Groups are owned and managed by a single user, who must + stick around or transfer ownership for the group to continue functioning.</p> + </div> + + <div class="modal-footer"> + <button type="button" class="btn btn-primary" data-dismiss="modal"> + Close + </button> + </div> + </div> + </div> +</div> |