summaryrefslogtreecommitdiff
path: root/app/gtd/templates
diff options
context:
space:
mode:
Diffstat (limited to 'app/gtd/templates')
-rw-r--r--app/gtd/templates/gtd/note_list.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/gtd/templates/gtd/note_list.html b/app/gtd/templates/gtd/note_list.html
index f5a9c77..d847ff2 100644
--- a/app/gtd/templates/gtd/note_list.html
+++ b/app/gtd/templates/gtd/note_list.html
@@ -4,7 +4,7 @@
<div class="post-header"><ul class="flex header-list">
<li><a class="btn" href="{% url 'gtd:note-list' %}">All</a></li>
{% for object in note_types %}
- <li><a class="btn" href="{% url 'gtd:note-list-status' object.1|lower%}">{{object.1}}</a></li>
+ <li><a class="btn" href="{% url 'gtd:note-list-status' object.label|lower%}">{{object.label}}</a></li>
{% endfor %}
<li class="right"><a href="{% url 'gtd:note-create' %}" class="btn">New Note</a></li>
</ul>