diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2025-02-08 23:04:19 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2025-02-08 23:04:19 +0000 |
commit | c4f990f002eb451c729d580beec1bd696714203c (patch) | |
tree | fec44d83927ddf7f835d5b90317f1df66db95b37 /core | |
parent | 875145fc386d8e5ad65d824b436289ba9d60688e (diff) | |
download | troggle-c4f990f002eb451c729d580beec1bd696714203c.tar.gz troggle-c4f990f002eb451c729d580beec1bd696714203c.tar.bz2 troggle-c4f990f002eb451c729d580beec1bd696714203c.zip |
Better description
Diffstat (limited to 'core')
-rw-r--r-- | core/views/editor_helpers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/views/editor_helpers.py b/core/views/editor_helpers.py index f6369f9..01e526b 100644 --- a/core/views/editor_helpers.py +++ b/core/views/editor_helpers.py @@ -149,7 +149,7 @@ def new_image_form(request, path): thumbnail.save(tb, format="jpeg", quality = 70) image_rel_path, thumb_rel_path, desc_rel_path = form.get_rel_paths() print(f"new_image_form(): \n {image_rel_path=}\n {thumb_rel_path=}\n {desc_rel_path=}") - image_page_template = loader.get_template("image_page_template.html") # this is the .html file in the /l/ folder + image_page_template = loader.get_template("image_page_template.html") image_page = image_page_template.render( { "header": form.cleaned_data["header"], |