From e43c761ab0563b48eeec74a617cfb5da5422b4c5 Mon Sep 17 00:00:00 2001 From: Tait Hoyem Date: Mon, 12 Sep 2022 19:26:13 -0600 Subject: [PATCH] Fix url --- templates/show_lists.html.tera | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/show_lists.html.tera b/templates/show_lists.html.tera index 571708a..03f962f 100644 --- a/templates/show_lists.html.tera +++ b/templates/show_lists.html.tera @@ -2,10 +2,10 @@ {% block content %}
    {% for list in lists %} -
  1. {{ list.name }}
  2. +
  3. {{ list.name }} New Note
  4. {% endfor %} {% for list in perm_lists %} -
  5. {{ list.name }} (shared from {{ list.owner_id }})
  6. +
  7. {{ list.name }} (shared from {{ list.owner_id }}) New Note
  8. {% endfor %}
{% endblock %}