diff --git a/templates/user/dashboard.html b/templates/user/dashboard.html index 0ef6508..fbe6b01 100644 --- a/templates/user/dashboard.html +++ b/templates/user/dashboard.html @@ -1,33 +1,177 @@ {% extends "layouts/default.html" %} {% block title %}Manage you archive.{% endblock %} {% block content %} -

Dashboard

-
- Create Page | - Create Archive Entry | - Manage Archive | - Manage Pages | - Manage Files | - {% if roles.administrator %} - Manage Users - {% endif %} -
+
+
+
+ profile Cat +

{{user.display-name}}

+
+
+ +
+

Storage

+ +
+
+ + + +
+
+
+ +
+

Archive

+
+ + New Archive Entry + Create Entry + -
-

File Upload

-
- -

- (Warning: This will overwrite any files stored on the - server with the same name.) -

- - -
+ + Archive Index + Archive Index + +
+
+ {% for entry in archive-entries %} +
+

{{entry.title | safe}}

+
+ + {{entry.title}} + + + Edit {{entry.title}} + + {% if roles.administrator %} +
+ + + +
+ {% endif %} +
+
+ {% endfor %} +
+
+ +
+

Pages

+ +
+ {% for page in pages %} + {% if page.can-delete == 1 %} +
+

{{page.title | safe}}

+
+ + {{page.title}} + + + Edit {{page.title}} + + {% if roles.administrator %} +
+ + + +
+ {% endif %} +
+
+ {% endif %} + {% endfor %} +
+
+ +
+
+

Accounts and Settings

+ {% if roles.administrator %} + + Edit Profile + Account Details + + + Manage Accounts + Accounts Index + + + Site Settings + Site Settings + + {% endif %} +
+
+
{% endblock %}