diff --git a/bookwyrm/templates/lists/list.html b/bookwyrm/templates/lists/list.html index 6cfb9b20..6f478fa1 100644 --- a/bookwyrm/templates/lists/list.html +++ b/bookwyrm/templates/lists/list.html @@ -71,7 +71,7 @@ {% endwith %} - {% if item.note or item.user == request.user %} + {% if item.notes %}
{% include "snippets/avatar.html" with user=item.user %} @@ -85,14 +85,14 @@ {% endblocktrans %}

- {{ item.notes|to_markdown|safe }} + {{ item.notes|to_markdown|safe }}

{% if item.user == request.user %}
- {% trans "Edit:" %} + {% trans "Edit notes:" %}
@@ -115,6 +115,30 @@ {% endif %}
+ {% elif item.user == request.user %} +
+
+ + {% trans "Add notes:" %} + + + + {% csrf_token %} +
+
+ +
+
+
+
+ +
+
+ +
+
{% endif %}