From d6d5a58792c3c652d65b0d7548726560a26585b2 Mon Sep 17 00:00:00 2001 From: Craig Oates Date: Sat, 17 Sep 2022 13:27:08 +0100 Subject: [PATCH] add /user/edit-page.html template. This HTML template is very rough -- just basics to make it operational. --- templates/user/edit-page.html | 67 +++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 templates/user/edit-page.html diff --git a/templates/user/edit-page.html b/templates/user/edit-page.html new file mode 100644 index 0000000..ff9f12f --- /dev/null +++ b/templates/user/edit-page.html @@ -0,0 +1,67 @@ +{% extends "layouts/default.html" %} +{% block title %}Edit: {{title}}{% endblock %} +{% block content %} +

Edit: {{title}}

+
+ {% if roles.logged-in %} + Dashboard + Edit Account +
+ + +
+
+ + +
+ Create Page + View Pages + + {% if roles.administrator %} + Site Settings + Users + {% endif %} + + {% else %} + Home + Log-in + {% endif %} +
+ + + + + +
+ + + + + +
+ +
+ + + + +
+{% endblock %}