-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
users.hbs
54 lines (54 loc) · 2.51 KB
/
users.hbs
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>User List | Admin Panel</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!---->
<link rel="icon" href="data:,">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fomantic-ui/2.7.5/semantic.min.css" integrity="sha256-S4n5rcKkPwT9YZGXPue8OorJ7GCPxBA5o/Z0ALWXyHs=" crossorigin="anonymous" />
<link rel="stylesheet" href="../default.min.css">
<link rel="stylesheet" href="../style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fomantic-ui/2.7.5/semantic.min.js" integrity="sha256-x9fzgXT3ttK2cZF12FIafkDJzEqqLnaWcchT+Y/plJ4=" crossorigin="anonymous"></script>
<!---->
</head>
<body class="page-users">
<div class="ui main menu">
<div class="header item">Welcome, {{user.Name}}@{{user.Provider}}</div>
<div class="item"><a href="./../files/">Back to Files</a></div>
<div class="right item">Powered by <a href="https://github.com/nektro/andesite" target="_blank">Andesite</a> <code>{{version}}</code></div>
</div>
<div class="ui main menu">
<div class="item"><a href="./../admin">Access</a></div>
<div class="item"><a href="./../admin/users">Users</a></div>
<div class="item"><a href="./../admin/roots">Roots</a></div>
</div>
<div>
<h1 class="ui header">Instance Users</h1>
<table class="ui compact table">
<thead>
<th>ID</th>
<th>Provider</th>
<th>Snowflake</th>
<th>Name</th>
<th>JoinedOn</th>
<th>Admin</th>
</thead>
<tbody>
{{#each users}}
<tr>
<td>{{ID}}</td>
<td>{{Provider}}</td>
<td>{{Snowflake}}</td>
<td>{{Name}}</td>
<td>{{JoinedOn}}</td>
<td>{{Admin}}</td>
</tr>
{{/each}}
</tbody>
</table>
</div>
</body>
</html>