From a522701b5874abab915dc82ce42d9fefe615c332 Mon Sep 17 00:00:00 2001 From: Craig Oates Date: Sat, 8 Oct 2022 17:10:29 +0100 Subject: [PATCH] update /user/index.html (HTML and CSS). --- templates/user/index.html | 139 +++++++++++++++++++++++++++++--------- 1 file changed, 108 insertions(+), 31 deletions(-) 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 %}