diff --git a/todo/templates/todo/del_list.html b/todo/templates/todo/del_list.html
index bf2c38c..19790be 100644
--- a/todo/templates/todo/del_list.html
+++ b/todo/templates/todo/del_list.html
@@ -1,4 +1,5 @@
{% extends "base.html" %}
+{% load url from future %}
{% block title %}{{ list_title }} to-do items{% endblock %}
diff --git a/todo/templates/todo/email/assigned_body.txt b/todo/templates/todo/email/assigned_body.txt
index bfb5e68..7f54865 100644
--- a/todo/templates/todo/email/assigned_body.txt
+++ b/todo/templates/todo/email/assigned_body.txt
@@ -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 }}:
diff --git a/todo/templates/todo/email/newcomment_body.txt b/todo/templates/todo/email/newcomment_body.txt
index dd0efc8..ceba940 100644
--- a/todo/templates/todo/email/newcomment_body.txt
+++ b/todo/templates/todo/email/newcomment_body.txt
@@ -1,3 +1,4 @@
+{% load url from future %}
A new task comment has been added.
Task: {{ task.title }}
diff --git a/todo/templates/todo/list_lists.html b/todo/templates/todo/list_lists.html
index 89370a8..8e6cda2 100644
--- a/todo/templates/todo/list_lists.html
+++ b/todo/templates/todo/list_lists.html
@@ -1,4 +1,5 @@
{% extends "todo/base.html" %}
+{% load url from future %}
{% block title %}{{ list_title }} Todo Lists{% endblock %}
diff --git a/todo/templates/todo/search_results.html b/todo/templates/todo/search_results.html
index b489ddc..4f1d4c3 100644
--- a/todo/templates/todo/search_results.html
+++ b/todo/templates/todo/search_results.html
@@ -1,4 +1,5 @@
{% extends "todo/base.html" %}
+{% load url from future %}
{% block title %}Search results{% endblock %}
{% block body_id %}post_search{% endblock %}
diff --git a/todo/templates/todo/view_list.html b/todo/templates/todo/view_list.html
index 0336ef7..4bcc76d 100644
--- a/todo/templates/todo/view_list.html
+++ b/todo/templates/todo/view_list.html
@@ -1,4 +1,5 @@
{% extends "todo/base.html" %}
+{% load url from future %}
{% block title %}Todo List: {{ list.name }}{% endblock %}
diff --git a/todo/templates/todo/view_task.html b/todo/templates/todo/view_task.html
index 3a65ad9..91de2c8 100644
--- a/todo/templates/todo/view_task.html
+++ b/todo/templates/todo/view_task.html
@@ -1,4 +1,5 @@
{% extends "todo/base.html" %}
+{% load url from future %}
{% block title %}Task: {{ task.title }}{% endblock %}