+ {% if view_url %}
+ {% trans 'View' %}
+ {% endif %}
\ No newline at end of file
diff --git a/cookbook/templates/include/storage_backend_warning.html b/cookbook/templates/include/storage_backend_warning.html
new file mode 100644
index 00000000..817a5840
--- /dev/null
+++ b/cookbook/templates/include/storage_backend_warning.html
@@ -0,0 +1,12 @@
+{% load i18n %}
+
+
+
{% trans 'Security Warning' %}
+
{% blocktrans %}
+ The Password and Token field are stored as plain text inside the database.
+ This is necessary because they are needed to make API requests, but it also increases the risk of
+ someone stealing it.
+ To limit the possible damage use read only tokens or accounts if available or create separate accounts
+ with limited access (only to recipes).
+ {% endblocktrans %}
+
\ No newline at end of file
diff --git a/cookbook/templates/index.html b/cookbook/templates/index.html
index bc08dc64..28241681 100644
--- a/cookbook/templates/index.html
+++ b/cookbook/templates/index.html
@@ -42,75 +42,6 @@
{% endif %}
-
-
-
-
-
-
-
{% trans 'Recipe' %}
-
-
-
-
-
-
-
-
-
-
-
-
-
+ {% include 'include/recipe_open_modal.html' %}
{% endblock %}
\ No newline at end of file
diff --git a/cookbook/templates/recipe_view.html b/cookbook/templates/recipe_view.html
index ea1c9d21..a41c9af3 100644
--- a/cookbook/templates/recipe_view.html
+++ b/cookbook/templates/recipe_view.html
@@ -8,26 +8,40 @@
{% block content %}
{{ recipe.name }}
+ {% if ingredients %}
+ {% trans 'by' %} {{ recipe.created_by.username }}