-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathprofile.html.twig
More file actions
58 lines (50 loc) · 2.03 KB
/
profile.html.twig
File metadata and controls
58 lines (50 loc) · 2.03 KB
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
{#
# -------------------------------------------------------------------------
# TreeView plugin for GLPI
# -------------------------------------------------------------------------
#
# LICENSE
#
# This file is part of TreeView.
#
# TreeView is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# TreeView is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with TreeView. If not, see <http://www.gnu.org/licenses/>.
# -------------------------------------------------------------------------
# @copyright Copyright (C) 2007-2023 by Teclib'.
# @license GPLv2 https://www.gnu.org/licenses/gpl-2.0.html
# @link https://github.com/pluginsGLPI/treeview
# -------------------------------------------------------------------------
#}
{% import "components/form/fields_macros.html.twig" as fields %}
<div class="hr-text">
<i class="fa-2x ti ti-sitemap"></i>
<span>{{ __('Treeview - Configuration', 'treeview') }}</span>
</div>
<form action="{{ target }}" method="post">
<input type="hidden" name="id" value="{{ treeview_profile_id }}">
<input type="hidden" name="_glpi_csrf_token" value="{{ csrf_token() }}">
{{ fields.checkboxField(
'treeview',
current_right,
__('Can use the treeview', 'treeview')
) }}
<div class="hr"></div>
<div class="hstack gap-1">
<div class="pe-5 ms-auto">
<button class="btn btn-primary" type="submit" name="update_user_profile" value="1">
<i class="ti ti-device-floppy"></i>
<span>{{ _x('button', 'Update') }}</span>
</button>
</div>
</div>
</form>