summaryrefslogtreecommitdiffstats
path: root/templates/patchwork/patch.html
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2013-10-03 18:45:47 +0200
committerJeremy Kerr <jk@ozlabs.org>2013-10-13 14:00:18 +0800
commita37842591183a2302f580ee4973a19e35661baf0 (patch)
tree6548defd59f2d8c0dcad67a3ea981f944530f6a6 /templates/patchwork/patch.html
parent3dbec78dbd8e80729cf208d1e68f550b7d7ba5a9 (diff)
downloadpatchwork-a37842591183a2302f580ee4973a19e35661baf0.tar.bz2
patchwork-a37842591183a2302f580ee4973a19e35661baf0.tar.xz
Django 1.5 compatibility fixes
Django 1.5 wants plenty of quotes scattered over the templates. Signed-off-by: Ralf Baechle <ralf@linux-mips.org> Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'templates/patchwork/patch.html')
-rw-r--r--templates/patchwork/patch.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/patchwork/patch.html b/templates/patchwork/patch.html
index 25c9962..813622b 100644
--- a/templates/patchwork/patch.html
+++ b/templates/patchwork/patch.html
@@ -43,10 +43,10 @@ function toggle_headers(link_id, headers_id)
<tr>
<th>Download</th>
<td>
- <a href="{% url patchwork.views.patch.mbox patch_id=patch.id %}"
+ <a href="{% url 'patchwork.views.patch.mbox' patch_id=patch.id %}"
>mbox</a>
{% if patch.content %}|
- <a href="{% url patchwork.views.patch.content patch_id=patch.id %}"
+ <a href="{% url 'patchwork.views.patch.content' patch_id=patch.id %}"
>patch</a>
{% endif %}
</td>