diff --git a/templates/user/index.html b/templates/user/index.html new file mode 100644 index 0000000..8fefb72 --- /dev/null +++ b/templates/user/index.html @@ -0,0 +1,43 @@ +{% extends "layouts/default.html" %} +{% block title %}Users{% endblock %} +{% block content %} +

Users

+Dashboard + +
+
+ Create New Account + + + + + + + + + + +
+
+ +{% for account in users %} +{% if account.username != user.username %} +
+

{{account.username}}

+

{{account.display-name}}

+
+ + + + +
+
+ + + +
+
+{% endif %} +{% endfor %} + +{% endblock %}