diff --git a/todo/templates/todo/add_external_task.html b/todo/templates/todo/add_external_task.html index 48f2aae..9184dda 100644 --- a/todo/templates/todo/add_external_task.html +++ b/todo/templates/todo/add_external_task.html @@ -18,11 +18,11 @@

{{ task }}

-{% csrf_token %} +{% csrf_token %} {% if task.note %} -
Note: {{ task.note|safe|urlize|linebreaks }}
+
Note: {{ task.note|safe|urlize|linebreaks }}
{% endif %}
@@ -32,7 +32,7 @@ Use this form to report the difficulty - we'll get right back to you.

{% if form.errors %} - {% for error in form.errors %} + {% for error in form.errors %} @@ -46,7 +46,7 @@ Use this form to report the difficulty - we'll get right back to you.

{{ form.management_form }} {{ form.id }} - + Summary: {{ form.title }}
@@ -56,28 +56,28 @@ Use this form to report the difficulty - we'll get right back to you.

- + Note: {{ form.note }}
Please describe the problem. - + Priority: - + {{ form.priority }}
Enter a number between 1 and 5,
where 5 is highest ("Computer is on fire = True"). - - + +

- + {% endblock %} diff --git a/todo/templates/todo/add_list.html b/todo/templates/todo/add_list.html index 4d6a935..3eb1412 100644 --- a/todo/templates/todo/add_list.html +++ b/todo/templates/todo/add_list.html @@ -16,9 +16,9 @@

Add a list:

- {% csrf_token %} + {% csrf_token %} {{ form }}

- + {% endblock %} diff --git a/todo/templates/todo/base.html b/todo/templates/todo/base.html index d996c33..71e2c63 100644 --- a/todo/templates/todo/base.html +++ b/todo/templates/todo/base.html @@ -1,20 +1,18 @@ {% extends "base.html" %} {% block page_heading %}GTD (Getting Things Done){% endblock %} {% block extrahead %} - - + + - - - + + - + {% endblock extrahead %} diff --git a/todo/templates/todo/del_list.html b/todo/templates/todo/del_list.html index 19790be..66bfd0a 100644 --- a/todo/templates/todo/del_list.html +++ b/todo/templates/todo/del_list.html @@ -12,8 +12,8 @@ {% if list_killed %}

{{ list.name }} is gone.

- - Return to lists + + Return to lists {% else %} @@ -21,17 +21,17 @@

Category tally:

- +

... all of which will be irretrievably blown away. Are you sure you want to do that?

{% csrf_token %} - +

@@ -51,7 +51,7 @@ - - - + + + {% endblock %} \ No newline at end of file diff --git a/todo/templates/todo/list_lists.html b/todo/templates/todo/list_lists.html index 8e6cda2..e05e8dc 100644 --- a/todo/templates/todo/list_lists.html +++ b/todo/templates/todo/list_lists.html @@ -15,7 +15,7 @@ {% endif %}

To-do Lists

- +

{{ item_count }} items in {{ list_count }} lists

{% regroup list_list by group as section_list %} @@ -30,12 +30,12 @@ {% endfor %} - +
 

Create new todo list

- + {% endblock %} diff --git a/todo/templates/todo/search_results.html b/todo/templates/todo/search_results.html index 4f1d4c3..048ba5b 100644 --- a/todo/templates/todo/search_results.html +++ b/todo/templates/todo/search_results.html @@ -15,24 +15,24 @@ {% if message %}

{{ message }}

{% endif %} - + {% if found_items %}

{{found_items.count}} search results for term: "{{ query_string }}"

{% for f in found_items %}

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

{% endfor %}
{% else %}

No results to show, sorry.

- + {% endif %} {% endblock %} \ No newline at end of file diff --git a/todo/templates/todo/view_list.html b/todo/templates/todo/view_list.html index 4bcc76d..63cba1b 100644 --- a/todo/templates/todo/view_list.html +++ b/todo/templates/todo/view_list.html @@ -8,8 +8,8 @@