diff --git a/todo/templates/todo/search_results.html b/todo/templates/todo/search_results.html index 23543db..c1fdbe4 100644 --- a/todo/templates/todo/search_results.html +++ b/todo/templates/todo/search_results.html @@ -1,7 +1,6 @@ {% extends "todo/base.html" %} {% block title %}Search results{% endblock %} -{% block body_id %}post_search{% endblock %} {% block content_title %}

Search

@@ -15,7 +14,7 @@

{{ f.title }}
On list: {{ f.list.name }}
- Assigned to: {{ f.assigned_to }} (created by: {{ f.created_by }})
+ Assigned to: {% if f.assigned_to %}{{ f.assigned_to }}{% else %}Anyone{% endif %} (created by: {{ f.created_by }})
Complete: {{ f.completed|yesno:"Yes,No" }}