From e708bec6cd76c2686de4158dde4d04f72a3c300d Mon Sep 17 00:00:00 2001 From: Tyler Hoang Date: Wed, 6 May 2026 12:21:26 -0700 Subject: init: lumiere film diary --- templates/form.html | 144 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 144 insertions(+) create mode 100644 templates/form.html (limited to 'templates/form.html') diff --git a/templates/form.html b/templates/form.html new file mode 100644 index 0000000..4009e87 --- /dev/null +++ b/templates/form.html @@ -0,0 +1,144 @@ +{% extends "base.html" %} + +{% block title %}{{ page_title }} · Lumière{% endblock %} + +{% block content %} +
+
+

Diary Entry

+

{{ page_title }}

+
+ + {% if error %} +
{{ error }}
+ {% endif %} + +
+ +
+ + +
+
+
+ +
+ + +
+
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + {% set current_shelf = shelf_override if shelf_override else (film.shelf if film and film.shelf else 'diary') %} + +
+ +
+ + {% set current_stars = film.stars if film else 0 %} + +
+ +
+ +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+
+ {% if film and film.poster_url %} + Poster preview + {% else %} + Poster preview + {% endif %} +
+
+ +
+ + +
+
+ +
+ Cancel + +
+
+
+{% endblock %} -- cgit v1.3-2-g0d8e