summaryrefslogtreecommitdiffstats
path: root/templates/base.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/base.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/base.html')
-rw-r--r--templates/base.html30
1 files changed, 15 insertions, 15 deletions
diff --git a/templates/base.html b/templates/base.html
index 6e5b65b..56091b4 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -13,29 +13,29 @@
<div id="title">
<h1 style="float: left;">
<a
- href="{% url patchwork.views.projects %}">Patchwork</a>
+ href="{% url 'patchwork.views.projects' %}">Patchwork</a>
{% block heading %}{% endblock %}</h1>
<div id="auth">
{% if user.is_authenticated %}
Logged in as
- <a href="{% url patchwork.views.user.profile %}"
+ <a href="{% url 'patchwork.views.user.profile' %}"
><strong>{{ user.username }}</strong></a>
<br/>
- <a href="{% url patchwork.views.user.todo_lists %}">todo
+ <a href="{% url 'patchwork.views.user.todo_lists' %}">todo
({{ user.get_profile.n_todo_patches }})</a> ::
- <a href="{% url patchwork.views.bundle.bundles %}">bundles</a>
+ <a href="{% url 'patchwork.views.bundle.bundles' %}">bundles</a>
<br/>
- <a href="{% url patchwork.views.user.profile %}">profile</a> ::
+ <a href="{% url 'patchwork.views.user.profile' %}">profile</a> ::
{% if user.is_staff %}
- <a href="{% url admin:index %}">admin</a> ::
+ <a href="{% url 'admin:index' %}">admin</a> ::
{% endif %}
- <a href="{% url auth_logout %}">logout</a>
+ <a href="{% url 'auth_logout' %}">logout</a>
{% else %}
- <a href="{% url auth_login %}">login</a>
+ <a href="{% url 'auth_login' %}">login</a>
<br/>
- <a href="{% url patchwork.views.user.register %}">register</a>
+ <a href="{% url 'patchwork.views.user.register' %}">register</a>
<br/>
- <a href="{% url patchwork.views.mail.settings %}">mail settings</a>
+ <a href="{% url 'patchwork.views.mail.settings' %}">mail settings</a>
{% endif %}
</div>
<div style="clear: both;"></div>
@@ -45,23 +45,23 @@
{% if project %}
<strong>Project</strong>: {{ project.linkname }}
:
- <a href="{% url patchwork.views.patch.list project_id=project.linkname %}"
+ <a href="{% url 'patchwork.views.patch.list' project_id=project.linkname %}"
>patches</a>
:
- <a href="{% url patchwork.views.project.project project_id=project.linkname %}"
+ <a href="{% url 'patchwork.views.project.project' project_id=project.linkname %}"
>project info</a>
{% if other_projects %}
:
- <a href="{% url patchwork.views.projects %}"
+ <a href="{% url 'patchwork.views.projects' %}"
>other projects</a>
{% endif %}
{% else %}
- <a href="{% url patchwork.views.projects %}"
+ <a href="{% url 'patchwork.views.projects' %}"
>project list</a>
{% endif %}
</div>
<div id="navright">
- <a href="{% url patchwork.views.help path="about/" %}">about</a>
+ <a href="{% url 'patchwork.views.help' path="about/" %}">about</a>
</div>
<div style="clear: both"></div>
</div>