From 5ebde24d20bb331dc3e5bf1843298d7a8b1aca9e Mon Sep 17 00:00:00 2001 From: David Blanc Brioir Date: Thu, 1 Jan 2026 14:26:19 +0100 Subject: [PATCH] fix: Add missing endif for results_data.results block MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes TemplateSyntaxError: missing {% endif %} for {% if results_data.results %} block. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- generations/library_rag/templates/search.html | 1 + 1 file changed, 1 insertion(+) diff --git a/generations/library_rag/templates/search.html b/generations/library_rag/templates/search.html index ca4701f..defc75b 100644 --- a/generations/library_rag/templates/search.html +++ b/generations/library_rag/templates/search.html @@ -251,6 +251,7 @@ {% endfor %} {% endif %} + {% endif %} {% else %}
🔮