Ensure compatiblity with Django 1.4 url template tag
This commit is contained in:
parent
322e043b7a
commit
bc5fcd3b3c
7 changed files with 7 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
|||
{% extends "base.html" %}
|
||||
{% load url from future %}
|
||||
|
||||
{% block title %}{{ list_title }} to-do items{% endblock %}
|
||||
|
||||
|
|
|
@ -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 }}:
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
{% load url from future %}
|
||||
A new task comment has been added.
|
||||
|
||||
Task: {{ task.title }}
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{% extends "todo/base.html" %}
|
||||
{% load url from future %}
|
||||
|
||||
{% block title %}{{ list_title }} Todo Lists{% endblock %}
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{% extends "todo/base.html" %}
|
||||
{% load url from future %}
|
||||
|
||||
{% block title %}Search results{% endblock %}
|
||||
{% block body_id %}post_search{% endblock %}
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{% extends "todo/base.html" %}
|
||||
{% load url from future %}
|
||||
|
||||
{% block title %}Todo List: {{ list.name }}{% endblock %}
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{% extends "todo/base.html" %}
|
||||
{% load url from future %}
|
||||
|
||||
{% block title %}Task: {{ task.title }}{% endblock %}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue