aboutsummaryrefslogtreecommitdiff
path: root/_includes/users.html
diff options
context:
space:
mode:
Diffstat (limited to '_includes/users.html')
-rw-r--r--_includes/users.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/_includes/users.html b/_includes/users.html
new file mode 100644
index 0000000..95468e8
--- /dev/null
+++ b/_includes/users.html
@@ -0,0 +1,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>