Ensure compatiblity with Django 1.4 url template tag

This commit is contained in:
Jonathan Wiltshire 2014-05-05 20:50:55 +01:00
parent 322e043b7a
commit bc5fcd3b3c
7 changed files with 7 additions and 0 deletions

View file

@ -1,4 +1,5 @@
{% extends "base.html" %}
{% load url from future %}
{% block title %}{{ list_title }} to-do items{% endblock %}

View file

@ -1,3 +1,4 @@
{% load url from future %}
Dear {{ task.assigned_to.first_name }} -
A new task on the list {{ task.list.name }} has been assigned to you by {{ task.created_by.first_name }} {{ task.created_by.last_name }}:

View file

@ -1,3 +1,4 @@
{% load url from future %}
A new task comment has been added.
Task: {{ task.title }}

View file

@ -1,4 +1,5 @@
{% extends "todo/base.html" %}
{% load url from future %}
{% block title %}{{ list_title }} Todo Lists{% endblock %}

View file

@ -1,4 +1,5 @@
{% extends "todo/base.html" %}
{% load url from future %}
{% block title %}Search results{% endblock %}
{% block body_id %}post_search{% endblock %}

View file

@ -1,4 +1,5 @@
{% extends "todo/base.html" %}
{% load url from future %}
{% block title %}Todo List: {{ list.name }}{% endblock %}

View file

@ -1,4 +1,5 @@
{% extends "todo/base.html" %}
{% load url from future %}
{% block title %}Task: {{ task.title }}{% endblock %}