blob: 31a9f8aff73985662e7f71a80a18477b90e57dc7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
{% extends "pages/abstract/dashboard.html.twig" %}
{% block stylesheets_page %}
<!-- Page-group-specific CSS asset bundle -->
{{ assets.css('css/form-widgets') | raw }}
{% endblock %}
{# Overrides blocks in head of base template #}
{% block page_title %}{{ translate("ROLE", 2) }} | {{ role.name }}{% endblock %}
{% block page_description %}{{ translate("ROLE.INFO_PAGE", {name: role.name}) }}{% endblock %}
{% block body_matter %}
<div class="row">
<div class="col-lg-4">
<div id="view-role" class="box box-primary">
<div class="box-header with-border">
<h3 class="box-title">{{ translate('ROLE.SUMMARY') }}</h3>
{% if 'tools' not in tools.hidden %}
<div class="box-tools pull-right">
<div class="btn-group">
<button type="button" class="btn btn-sm dropdown-toggle" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">
<i class="fa fa-gear"></i>
<span class="caret"></span>
</button>
<ul class="dropdown-menu box-tool-menu">
{% block tools %}
<li>
<a href="#" class="js-role-edit" data-slug="{{ role.slug }}">
<i class="fa fa-edit fa-fw"></i> {{ translate('EDIT') }}
</a>
</li>
{% if 'permissions' not in tools.hidden %}
<li>
<a href="#" class="js-role-permissions" data-slug="{{ role.slug }}">
<i class="fa fa-key"></i> {{ translate("PERMISSION.MANAGE") }}
</a>
</li>
{% endif %}
{% if 'delete' not in tools.hidden %}
<li>
<a href="#" class="js-role-delete" data-slug="{{ role.slug }}">
<i class="fa fa-trash-o fa-fw"></i> {{ translate('DELETE') }}
</a>
</li>
{% endif %}
{% endblock %}
</ul>
</div>
</div>
{% endif %}
</div>
<div class="box-body box-profile">
<div class="text-center">
<i class="fa fa-drivers-license fa-5x"></i>
</div>
<h3 class="profile-username text-center">{{ role.name }}</h3>
{% if 'description' not in fields.hidden %}
<p class="text-muted">
{{ role.description }}
</p>
{% endif %}
{% if 'users' not in fields.hidden %}
<hr>
<strong><i class="fa fa-users margin-r-5"></i> {{ translate('USER', 2) }}</strong>
<p class="badge bg-blue box-profile-property">
{{ role.users.count }}
</p>
{% endif %}
</div>
</div>
</div>
<div class="col-lg-8">
<div id="widget-role-permissions" class="box box-primary">
<div class="box-header">
<h3 class="box-title"><i class="fa fa-fw fa-key"></i> {{ translate('PERMISSION', 2) }}</h3>
{% include "tables/table-tool-menu.html.twig" %}
</div>
<div class="box-body">
{% include "tables/permissions.html.twig" with {
"table" : {
"id" : "table-role-permissions"
}
} %}
</div>
</div>
</div>
<div class="col-lg-12">
<div id="widget-role-users" class="box box-primary">
<div class="box-header">
<h3 class="box-title"><i class="fa fa-fw fa-key"></i> {{ translate('USER', 2) }}</h3>
{% include "tables/table-tool-menu.html.twig" %}
</div>
<div class="box-body">
{% include "tables/users.html.twig" with {
"table" : {
"id" : "table-role-users",
"columns" : ["last_activity"]
}
} %}
</div>
</div>
</div>
</div>
{% endblock %}
{% block scripts_page %}
<!-- Include page variables -->
<script>
{% include "pages/partials/page.js.twig" %}
// Add user name
page = $.extend(
true, // deep extend
{
"role_slug": "{{ role.slug }}"
},
page
);
</script>
<!-- Include form widgets JS -->
{{ assets.js('js/form-widgets') | raw }}
<!-- Include page-specific JS -->
{{ assets.js('js/pages/role') | raw }}
{% endblock %}
|