You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
2.0 KiB
63 lines
2.0 KiB
<ol class="breadcrumb"> |
|
<li class="breadcrumb-item"> |
|
<a href="<?= site_url('admin') ?>"><?= lang('Admin.homeBreadcrumbTitle') ?></a> |
|
</li> |
|
<li class="breadcrumb-item"> |
|
<a href="<?= site_url('admin/groups') ?>"><?= lang('Admin.groupsBreadcrumbTitle') ?></a> |
|
</li> |
|
<li class="breadcrumb-item active"><?= lang('Admin.breadcrumbCommonShow') ?></li> |
|
</ol> |
|
<div class="card mb-3"> |
|
<div class="card-header"> |
|
<?= lang('Admin.groupsShowHeader') ?> |
|
</div> |
|
<div class="card-body"> |
|
<div class="form-group"> |
|
<label><?= lang('Admin.groupsLabelId') ?></label> |
|
<p><?= $group['id'] ?></p> |
|
</div> |
|
<div class="form-group"> |
|
<label><?= lang('Admin.groupsLabelName') ?></label> |
|
<p><?= $group['name'] ?></p> |
|
</div> |
|
<div class="form-group"> |
|
<label><?= lang('Admin.groupsLabelDefinition') ?></label> |
|
<p><?= $group['definition'] ?></p> |
|
</div> |
|
<div class="row"> |
|
<div class="col-sm-6"> |
|
<div class="form-group"> |
|
<label for="inputSubGroups"><?= lang('Admin.groupsLabelSubGroups') ?></label> |
|
<?php foreach ($groups as $group): ?> |
|
<?php if (! in_array(['subgroup_id' => $group['id']], $activeGroups)): ?> |
|
<?php continue; ?> |
|
<?php endif; ?> |
|
<div class="form-check"> |
|
<label> |
|
<?= $group['definition'] ?> (<?= $group['name'] ?>) |
|
</label> |
|
</div> |
|
<?php endforeach; ?> |
|
</div> |
|
</div> |
|
<div class="col-sm-6"> |
|
<div class="form-group"> |
|
<label for="inputPerms"><?= lang('Admin.groupsLabelPerms') ?></label> |
|
<?php foreach ($perms as $perm): ?> |
|
<?php if (! in_array(['perm_id' => $perm['id'], 'state' => 1], $activePerms)): ?> |
|
<?php continue; ?> |
|
<?php endif; ?> |
|
<div class="form-check"> |
|
<label> |
|
<?= $perm['definition'] ?> (<?= $perm['name'] ?>) |
|
</label> |
|
</div> |
|
<?php endforeach; ?> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
<div class="card-footer"> |
|
<a href="<?= site_url('admin/groups') ?>" class="btn btn-warning"><?= lang('Admin.groupsLinkBack') ?></a> |
|
</div> |
|
</div>
|
|
|