From 8cfe94639787f902394bdc64b4331d77053dbbbf Mon Sep 17 00:00:00 2001 From: master3395 Date: Tue, 20 Jan 2026 01:05:47 +0100 Subject: [PATCH] Fix remaining code block in help.html - wrap with verbatim - Wrap second Django template code example (line 500) with {% verbatim %} tags - Ensures all Django template syntax in code examples is properly escaped - Fixes remaining 'Invalid block tag' error on line 660 --- pluginHolder/templates/pluginHolder/help.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pluginHolder/templates/pluginHolder/help.html b/pluginHolder/templates/pluginHolder/help.html index 9a01098af..cfd8e1a0e 100644 --- a/pluginHolder/templates/pluginHolder/help.html +++ b/pluginHolder/templates/pluginHolder/help.html @@ -497,9 +497,11 @@ urlpatterns = [

{% trans "3. Templates" %}

{% trans "Always extend baseTemplate/index.html:" %}

+ {% verbatim %}
{% extends "baseTemplate/index.html" %}
 {% load static %}
 {% load i18n %}
+ {% endverbatim %}

{% trans "Advanced Features" %}

{% trans "Database Models" %}