summaryrefslogtreecommitdiffstats
path: root/dashboard/src/templates/account/user_list.html
blob: 58ddda6b19c49d1a765c954009801b621a1dbc1c (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.userprofile.email_addr }}
            </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 %}