Add missing quotes for url tag in email templates
This commit is contained in:
parent
bc5fcd3b3c
commit
6c0112a050
2 changed files with 4 additions and 4 deletions
|
@ -15,7 +15,7 @@ Note: {{ task.note }}
|
||||||
|
|
||||||
|
|
||||||
Task details/comments:
|
Task details/comments:
|
||||||
http://{{ site }}{% url todo-task_detail task.id %}
|
http://{{ site }}{% url 'todo-task_detail' task.id %}
|
||||||
|
|
||||||
List {{ task.list.name }}:
|
List {{ task.list.name }}:
|
||||||
http://{{ site }}{% url todo-incomplete_tasks task.list.id task.list.slug %}
|
http://{{ site }}{% url 'todo-incomplete_tasks' task.list.id task.list.slug %}
|
||||||
|
|
|
@ -10,8 +10,8 @@ Comment:
|
||||||
{% endautoescape %}
|
{% endautoescape %}
|
||||||
|
|
||||||
Task details/comments:
|
Task details/comments:
|
||||||
https://{{ site }}{% url todo-task_detail task.id %}
|
https://{{ site }}{% url 'todo-task_detail' task.id %}
|
||||||
|
|
||||||
List {{ task.list.name }}:
|
List {{ task.list.name }}:
|
||||||
https://{{ site }}{% url todo-incomplete_tasks task.list.id task.list.slug %}
|
https://{{ site }}{% url 'todo-incomplete_tasks' task.list.id task.list.slug %}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue