From a8562ef2e75e507e1514f00306d411526ee6de43 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 12 Dec 2019 19:32:26 -0400 Subject: [PATCH] Normalize quote used in {% include %} Signed-off-by: Roberto Rosario --- .../templates/appearance/forms/widgets/textareadiv.html | 2 +- mayan/apps/appearance/templates/appearance/generic_form.html | 2 +- .../templates/appearance/generic_list_items_subtemplate.html | 4 ++-- .../templates/appearance/generic_list_subtemplate.html | 2 +- .../document_states/forms/widgets/workflow_image.html | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/mayan/apps/appearance/templates/appearance/forms/widgets/textareadiv.html b/mayan/apps/appearance/templates/appearance/forms/widgets/textareadiv.html index 0886f0c8ca..88e54185f4 100644 --- a/mayan/apps/appearance/templates/appearance/forms/widgets/textareadiv.html +++ b/mayan/apps/appearance/templates/appearance/forms/widgets/textareadiv.html @@ -1,2 +1,2 @@ -
+
 {% if widget.value %}{{ widget.value }}{% endif %}
diff --git a/mayan/apps/appearance/templates/appearance/generic_form.html b/mayan/apps/appearance/templates/appearance/generic_form.html index 27fdce4de2..5796818eba 100644 --- a/mayan/apps/appearance/templates/appearance/generic_form.html +++ b/mayan/apps/appearance/templates/appearance/generic_form.html @@ -6,7 +6,7 @@ {% block content %} {% if form %} {% with '' as title %} - {% include "appearance/generic_form_subtemplate.html" %} + {% include 'appearance/generic_form_subtemplate.html' %} {% endwith %} {% endif %} diff --git a/mayan/apps/appearance/templates/appearance/generic_list_items_subtemplate.html b/mayan/apps/appearance/templates/appearance/generic_list_items_subtemplate.html index 304b2ce63f..0ca85ac7f7 100644 --- a/mayan/apps/appearance/templates/appearance/generic_list_items_subtemplate.html +++ b/mayan/apps/appearance/templates/appearance/generic_list_items_subtemplate.html @@ -11,7 +11,7 @@ {% include 'appearance/no_results.html' %} {% else %} - {% include "appearance/list_header.html" %} + {% include 'appearance/list_header.html' %} {% navigation_resolve_menu name='multi item' sort_results=True source=object_list.0 as links_multi_menus_results %}
@@ -22,7 +22,7 @@
{% else %} - {% include "appearance/list_header.html" %} + {% include 'appearance/list_header.html' %} {% navigation_resolve_menu name='multi item' sort_results=True source=object_list.0 as links_multi_menus_results %}
diff --git a/mayan/apps/document_states/templates/document_states/forms/widgets/workflow_image.html b/mayan/apps/document_states/templates/document_states/forms/widgets/workflow_image.html index 8b2dc419cb..38666052c9 100644 --- a/mayan/apps/document_states/templates/document_states/forms/widgets/workflow_image.html +++ b/mayan/apps/document_states/templates/document_states/forms/widgets/workflow_image.html @@ -1,3 +1,3 @@ {% load i18n %} -{% trans 'Workflow preview' %} +{% trans 'Workflow preview' %}