diff options
-rw-r--r-- | issues/quality-control/fix-flash-messages.gmi | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/issues/quality-control/fix-flash-messages.gmi b/issues/quality-control/fix-flash-messages.gmi new file mode 100644 index 0000000..da54c52 --- /dev/null +++ b/issues/quality-control/fix-flash-messages.gmi @@ -0,0 +1,20 @@ +# Fix Flash Messages + +## Tags + +* assigned: fredm +* priority: low +* type: bug +* status: open +* keywords: flask, flash + +## Description + +The + +``` +{% with messages = get_flashed_messages(with_categories=true) %} +``` +statement seems to be getting the flashed messages as a generator, and as such, can only ever be looped through once. As such, the `flash_messages` macro defined in `qc_app/templates/flash_messages.html` does not work as expected. + +Instead, it will show the errors where it is first called on a template, and any subsequent calls will not show anything. |