diff --git a/templates/user/index.html b/templates/user/index.html index 9d0a92b..a749141 100644 --- a/templates/user/index.html +++ b/templates/user/index.html @@ -1,41 +1,118 @@ {% extends "layouts/default.html" %} {% block title %}Users{% endblock %} {% block content %} -

Users

-
-
- Create New Account - +
+ +

Account Management

+ + + +

Create New Account

+

+ New users can only create 'pages' and 'archive entries'. They + cannot edit or delete them. +

+ + - + - + - + - - -
-
- -{% for account in users %} -{% if account.username != user.username %} -
-

{{account.username}}

-

{{account.display-name}}

-
- - - - -
-
- - - + +
-
-{% endif %} -{% endfor %} +

User Acccounts

+ {% for account in users %} + {% if account.username != user.username %} +
+
+ + + +

+ {{account.username}} +
+ {{account.display-name}} +

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