From cdd19f7c5437722263559776f0145d5155e424e3 Mon Sep 17 00:00:00 2001 From: Masahiko AMANO Date: Tue, 7 Jan 2025 15:42:16 +0300 Subject: [PATCH] feat(web): add quote edit form --- web/static/js/quotes.js | 56 ++++++++++++++++++++++++++++++++++++++- web/templates/quotes.html | 43 ++++++++++++++++++++++++++++++ 2 files changed, 98 insertions(+), 1 deletion(-) diff --git a/web/static/js/quotes.js b/web/static/js/quotes.js index 49c34b5..9e11736 100644 --- a/web/static/js/quotes.js +++ b/web/static/js/quotes.js @@ -12,6 +12,7 @@ var sorting = sessionStorage.getItem("sort"); if (sorting == null) { sorting = "-datetime"; } +var temp_quote_id; function renderBlockQuote(quote) { return ` @@ -23,7 +24,7 @@ function renderBlockQuote(quote) {

${quote.datetime}

-
+