summaryrefslogtreecommitdiff
blob: c25d2eae8d1c8723f7ef953044d92225a7e342ae (plain)
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
<!DOCTYPE html>
<html lang="en">
{{template "head"}}
<body>
{{template "header" .}}

<div class="container mb-5">
    <div class="row">
        <div class="col-12">


            <h1>Admin Area</h1>

            <div class="row">

                {{template "viewGlobal"}}

                {{template "viewUsers" .}}

                {{template "editPermissions" .}}

                {{template "viewTemplates"}}

            </div>

        </div>
    </div>
</div>



{{template "footer" .}}


</body>
</html>