From 3bb71dd9f2777325e3b5f6b4dc6217a37cae9023 Mon Sep 17 00:00:00 2001 From: Your Name Date: Sun, 10 Sep 2023 23:54:38 +0200 Subject: [PATCH] Simple anti-spam mechanism --- templates/post_form.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/post_form.html b/templates/post_form.html index f583beff..21789381 100644 --- a/templates/post_form.html +++ b/templates/post_form.html @@ -203,13 +203,13 @@ {{ antibot.html() }} {% endif %} - {% if config.simple_anti_spam and not id %} + {% if config.simple_spam and not id %} - {{ config.simple_anti_spam.prompt }} + {{ config.simple_spam.prompt }} {{ antibot.html() }} - + {{ antibot.html() }} {% endif %}