Enable simple search of tasks

This commit is contained in:
Scot Hacker 2014-11-17 14:42:17 -08:00
parent bf7dc911b1
commit 6e032b22bb
4 changed files with 21 additions and 4 deletions

View file

@ -20,10 +20,11 @@
<p><strong><a href="{% url 'todo-task_detail' f.id %}">{{ f.title }}</a></strong><br />
<span class="minor">
On list: <a href="{% url 'todo-incomplete_tasks' f.list.id f.list.slug %}">{{ f.list }}</a><br />
On list: <a href="{% url 'todo-incomplete_tasks' f.list.id f.list.slug %}">{{ f.list.name }}</a><br />
Assigned to: {{ f.assigned_to }} (created by: {{ f.created_by }})<br />
Complete: {{ f.completed|yesno:"Yes,No" }}
</span>
</p>
{% endfor %}
</div>