aboutsummaryrefslogtreecommitdiff
path: root/_includes/users.html
blob: 95468e8b1d984b9db567edeb04673ebda0fe8632 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<p>Users (<a href="/u">Add User</a>)
<table>
    <thead>
        <tr>
            <td>URL</td>
            <td>Size in bytes</td>
        </tr>
    </thead>
    <tbody>
        {% for item in users %}
        {% if item.size == 0 %}
        {% else %}
            <tr>
                <td><a href="/u/{{ item.pageurl }}">~{{ item.pageurl }}</a></td>
                <td><code>{{ item.size }}</code></td>
            </tr>
        {% endif %}
        {% endfor %}
    </tbody>
</table>