blob: 68178ebed6be1f0a632787f4584ad44383a88735 (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
{% extends "dashboard/table.html" %}
{% load staticfiles %}
{% block table %}
<thead>
<tr>
<th>Username</th>
<th>Full Name</th>
<th>Email</th>
<th>Company</th>
<th>SSH Key</th>
<th>GPG Key</th>
</tr>
</thead>
<tbody>
{% for user in users %}
<tr>
<td>
{{ user.username }}
</td>
<td>
{{ user.userprofile.full_name }}
</td>
<td>
{{ user.email }}
</td>
<td>
{{ user.userprofile.company }}
</td>
<td>
{% if user.userprofile.ssh_public_key %}
<a href={{ user.userprofile.ssh_public_key.url }}>SSH</a>
{% endif %}
</td>
<td>
{% if user.userprofile.pgp_public_key %}
<a href={{ user.userprofile.pgp_public_key.url }}>GPG</a>
{% endif %}
</td>
</tr>
{% endfor %}
</tbody>
{% endblock table %}
{% block tablejs %}
<script type="text/javascript">
$(document).ready(function () {
$('#table').DataTable({
scrollX: true,
"order": [[0, "asc"]]
});
});
</script>
{% endblock tablejs %}
|