From d8db522d002012cb85c504aeab094ad173f74aec Mon Sep 17 00:00:00 2001 From: Damien De Paoli Date: Sun, 16 Jan 2022 12:51:42 +1100 Subject: [PATCH] first quick pass of user menu in navbar which shows simple read only prefs content, and a logout option that works --- templates/prefs.html | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 templates/prefs.html diff --git a/templates/prefs.html b/templates/prefs.html new file mode 100644 index 0000000..63e5eb5 --- /dev/null +++ b/templates/prefs.html @@ -0,0 +1,25 @@ +{% extends "base.html" %} + +{% block main_content %} +

Simple Pref page

+ + + + + + + {% for pref in prefs %} + + + + + + + + + + + {% endfor %} + +
PathNew or OldestHow ManyFolders?Group byThumb sizeFullscreenDB retrieve offset
{{pref.path_type}}{{pref.noo}}{{pref.how_many}}{{pref.folders}}{{pref.grouping}}{{pref.size}}{{pref.fullscreen}}{{pref.st_offset}}
+{% endblock main_content %}