From f2e98265e7644ce6cd9805c833f7660b971bd410 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gina=20H=C3=A4u=C3=9Fge?= Date: Thu, 15 Jan 2015 15:13:55 +0100 Subject: [PATCH] Fix generic plugin includes again (was still depending on a removed variable) --- src/octoprint/templates/index.jinja2 | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/octoprint/templates/index.jinja2 b/src/octoprint/templates/index.jinja2 index cbc13b07..dea44460 100644 --- a/src/octoprint/templates/index.jinja2 +++ b/src/octoprint/templates/index.jinja2 @@ -123,11 +123,9 @@ - {% if templatePlugins %} - {% for plugin_name in pluginNames %} - {% include plugin_name + ".jinja2" ignore missing %} - {% endfor %} - {% endif %} + {% for plugin_name in pluginNames %} + {% include plugin_name + ".jinja2" ignore missing %} + {% endfor %} {% include 'javascripts.jinja2' %}