summaryrefslogtreecommitdiff
path: root/app/gtd/templates
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2023-11-17 16:51:54 -0500
committerluxagraf <sng@luxagraf.net>2023-11-17 16:51:54 -0500
commitcb738fd973664b1458a6aa343be06cee57eb4c5e (patch)
tree763d022e0fe79ef7d4f2cd096e45a560ceb8d312 /app/gtd/templates
parent6b1ae214361f533e53d8993a530e5d2b17c4f4e9 (diff)
gtd: decided against integrating wired
Diffstat (limited to 'app/gtd/templates')
-rw-r--r--app/gtd/templates/gtd/note_list.html5
1 files changed, 3 insertions, 2 deletions
diff --git a/app/gtd/templates/gtd/note_list.html b/app/gtd/templates/gtd/note_list.html
index 203906b..1e5179e 100644
--- a/app/gtd/templates/gtd/note_list.html
+++ b/app/gtd/templates/gtd/note_list.html
@@ -2,8 +2,9 @@
{% block primary %}
<main class="post-detail">
<div class="post-header"><ul class="flex header-list">
- {% for status in note_statuses %}
- <li><a class="btn" href="{% url 'gtd:note-list-status' status.1|lower%}">{{status.1}}</a></li>
+ <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>
{% endfor %}
<li class="right"><a href="{% url 'gtd:note-create' %}" class="btn">New Note</a></li>
</ul>