diff --git a/cookbook/templates/batch/waiting.html b/cookbook/templates/batch/waiting.html
index 29164ffae..deb65bdf1 100644
--- a/cookbook/templates/batch/waiting.html
+++ b/cookbook/templates/batch/waiting.html
@@ -14,7 +14,12 @@
-
+
+ {% if not request.user.is_authenticated or request.user.userpreference.theme == request.user.userpreference.TANDOOR %}
+
![]()
+ {% else %}
+
+ {% endif %}
diff --git a/cookbook/templates/forms/edit_internal_recipe.html b/cookbook/templates/forms/edit_internal_recipe.html
index 230fbbfed..155ab3721 100644
--- a/cookbook/templates/forms/edit_internal_recipe.html
+++ b/cookbook/templates/forms/edit_internal_recipe.html
@@ -35,7 +35,11 @@
-
+ {% if not request.user.is_authenticated or request.user.userpreference.theme == request.user.userpreference.TANDOOR %}
+
![]()
+ {% else %}
+
+ {% endif %}
@@ -668,7 +672,7 @@
this.recipe.steps[step].ingredients[id] = new_unit
},
addKeyword: function (tag) {
- let new_keyword = {'label':tag,'name':tag}
+ let new_keyword = {'label': tag, 'name': tag}
this.recipe.keywords.push(new_keyword)
},
searchKeywords: function (query) {
diff --git a/cookbook/templates/shopping_list.html b/cookbook/templates/shopping_list.html
index ad3a84799..0b8110f09 100644
--- a/cookbook/templates/shopping_list.html
+++ b/cookbook/templates/shopping_list.html
@@ -37,7 +37,11 @@
-
+ {% if not request.user.is_authenticated or request.user.userpreference.theme == request.user.userpreference.TANDOOR %}
+
![]()
+ {% else %}
+
+ {% endif %}
diff --git a/cookbook/templatetags/theming_tags.py b/cookbook/templatetags/theming_tags.py
index 623fcf9b2..2ba20d8cd 100644
--- a/cookbook/templatetags/theming_tags.py
+++ b/cookbook/templatetags/theming_tags.py
@@ -9,7 +9,7 @@ register = template.Library()
@register.simple_tag
def theme_url(request):
if not request.user.is_authenticated:
- return static('themes/flatly.min.css')
+ return static('themes/tandoor.min.css')
themes = {
UserPreference.BOOTSTRAP: 'themes/bootstrap.min.css',
UserPreference.FLATLY: 'themes/flatly.min.css',
diff --git a/vue/src/apps/ImportResponseView/ImportResponseView.vue b/vue/src/apps/ImportResponseView/ImportResponseView.vue
index a1b31da57..cac380f75 100644
--- a/vue/src/apps/ImportResponseView/ImportResponseView.vue
+++ b/vue/src/apps/ImportResponseView/ImportResponseView.vue
@@ -23,7 +23,7 @@
- {{ $t('import-running') }}
+ {{ $t('Importing') }}...
diff --git a/vue/src/components/LoadingSpinner.vue b/vue/src/components/LoadingSpinner.vue
index 968c55773..42146cbed 100644
--- a/vue/src/components/LoadingSpinner.vue
+++ b/vue/src/components/LoadingSpinner.vue
@@ -1,7 +1,7 @@
-
+