aboutsummaryrefslogtreecommitdiffhomepage
path: root/main/app/sprinkles/admin/templates/pages/roles.html.twig
blob: 2677f879c1e48d4396f7084ab5fdf83109db004d (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
{% extends "pages/abstract/dashboard.html.twig" %}

{% block stylesheets_page %}
    <!-- Page-specific CSS asset bundle -->
    {{ assets.css('css/form-widgets') | raw }}
{% endblock %}

{# Overrides blocks in head of base template #}
{% block page_title %}{{ translate("ROLE", 2) }}{% endblock %}

{% block page_description %}{{ translate("ROLE.PAGE_DESCRIPTION") }}{% endblock %}

{% block body_matter %}
    <div class="row">
        <div class="col-md-12">
            <div id="widget-roles" class="box box-primary">
                <div class="box-header">
                    <h3 class="box-title"><i class="fa fa-fw fa-drivers-license"></i> {{ translate('ROLE', 2) }}</h3>
                    {% include "tables/table-tool-menu.html.twig" %}
                </div>
                <div class="panel-body">
                    {% include "tables/roles.html.twig" with {
                        "table" : {
                            "id" : "table-roles"
                        }
                    } %}
                </div>
                <div class="box-footer">
                    <button type="button" class="btn btn-success js-role-create">
                        <i class="fa fa-plus-square"></i> {{ translate("ROLE.CREATE") }}
                    </button>
                </div>
            </div>
        </div>
    </div>
{% endblock %}
{% block scripts_page %}
    <!-- Include validation rules -->
    <script>
        {% include "pages/partials/page.js.twig" %}
    </script>

    <!-- Include form widgets JS -->
    {{ assets.js('js/form-widgets') | raw }}

    <!-- Include page-specific JS -->
    {{ assets.js('js/pages/roles') | raw }}

{% endblock %}