summaryrefslogtreecommitdiffstats
path: root/hyperkitty
diff options
context:
space:
mode:
authorAurélien Bompard <aurelien@bompard.org>2013-03-21 14:50:49 +0100
committerAurélien Bompard <aurelien@bompard.org>2013-03-21 14:50:49 +0100
commit6dcf81e8d7e0f1c60a7d39bff241bc1e3436488b (patch)
tree96040f4ec1af2076abbf157af7b59e193c4fa27f /hyperkitty
parente5d3e7e34d0b1dddf5d776735edc0173d7061aff (diff)
downloadhyperkitty-6dcf81e8d7e0f1c60a7d39bff241bc1e3436488b.tar.gz
hyperkitty-6dcf81e8d7e0f1c60a7d39bff241bc1e3436488b.tar.xz
hyperkitty-6dcf81e8d7e0f1c60a7d39bff241bc1e3436488b.zip
Use the url tag from future for Django 1.5 compat
Diffstat (limited to 'hyperkitty')
-rw-r--r--hyperkitty/templates/404.html1
-rw-r--r--hyperkitty/templates/500.html1
-rw-r--r--hyperkitty/templates/api.html1
-rw-r--r--hyperkitty/templates/base.html1
-rw-r--r--hyperkitty/templates/index.html1
-rw-r--r--hyperkitty/templates/login.html1
-rw-r--r--hyperkitty/templates/message.html1
-rw-r--r--hyperkitty/templates/message_new.html1
-rw-r--r--hyperkitty/templates/messages/like_form.html2
-rw-r--r--hyperkitty/templates/messages/message.html1
-rw-r--r--hyperkitty/templates/messages/reply_form.html2
-rw-r--r--hyperkitty/templates/thread.html1
-rw-r--r--hyperkitty/templates/thread_list.html1
-rw-r--r--hyperkitty/templates/threads/month_list.html1
-rw-r--r--hyperkitty/templates/threads/right_col.html1
-rw-r--r--hyperkitty/templates/threads/summary_thread.html1
-rw-r--r--hyperkitty/templates/threads/summary_thread_large.html1
-rw-r--r--hyperkitty/templates/threads/tags.html2
-rw-r--r--hyperkitty/templates/user_profile.html1
19 files changed, 22 insertions, 0 deletions
diff --git a/hyperkitty/templates/404.html b/hyperkitty/templates/404.html
index dbfef16..232ca97 100644
--- a/hyperkitty/templates/404.html
+++ b/hyperkitty/templates/404.html
@@ -1,4 +1,5 @@
{% extends "base.html" %}
+{% load url from future %}
{% load i18n %}
{% block content %}
<style>
diff --git a/hyperkitty/templates/500.html b/hyperkitty/templates/500.html
index 5a45d80..f0cbefe 100644
--- a/hyperkitty/templates/500.html
+++ b/hyperkitty/templates/500.html
@@ -1,4 +1,5 @@
{% extends "base.html" %}
+{% load url from future %}
{% load i18n %}
{% block title %}
diff --git a/hyperkitty/templates/api.html b/hyperkitty/templates/api.html
index 422d6a2..537ada2 100644
--- a/hyperkitty/templates/api.html
+++ b/hyperkitty/templates/api.html
@@ -1,4 +1,5 @@
{% extends "base.html" %}
+{% load url from future %}
{% block content %}
<h2>REST API</h2>
diff --git a/hyperkitty/templates/base.html b/hyperkitty/templates/base.html
index c63b7be..00385a4 100644
--- a/hyperkitty/templates/base.html
+++ b/hyperkitty/templates/base.html
@@ -1,3 +1,4 @@
+{% load url from future %}
{% load assets %}
<!DOCTYPE HTML>
<html>
diff --git a/hyperkitty/templates/index.html b/hyperkitty/templates/index.html
index ab8289b..aed1abb 100644
--- a/hyperkitty/templates/index.html
+++ b/hyperkitty/templates/index.html
@@ -1,4 +1,5 @@
{% extends "base.html" %}
+{% load url from future %}
{% load i18n %}
diff --git a/hyperkitty/templates/login.html b/hyperkitty/templates/login.html
index 61dafb9..41f72e4 100644
--- a/hyperkitty/templates/login.html
+++ b/hyperkitty/templates/login.html
@@ -1,4 +1,5 @@
{% extends "base.html" %}
+{% load url from future %}
{% load i18n %}
{% load crispy_forms_tags %}
diff --git a/hyperkitty/templates/message.html b/hyperkitty/templates/message.html
index 2ba832b..f542752 100644
--- a/hyperkitty/templates/message.html
+++ b/hyperkitty/templates/message.html
@@ -1,4 +1,5 @@
{% extends "base.html" %}
+{% load url from future %}
{% load gravatar %}
{% load hk_generic %}
{% load storm %}
diff --git a/hyperkitty/templates/message_new.html b/hyperkitty/templates/message_new.html
index 65ea034..28231c8 100644
--- a/hyperkitty/templates/message_new.html
+++ b/hyperkitty/templates/message_new.html
@@ -1,4 +1,5 @@
{% extends "base.html" %}
+{% load url from future %}
{% load gravatar %}
{% load hk_generic %}
{% load storm %}
diff --git a/hyperkitty/templates/messages/like_form.html b/hyperkitty/templates/messages/like_form.html
index 11f5b58..14b8f88 100644
--- a/hyperkitty/templates/messages/like_form.html
+++ b/hyperkitty/templates/messages/like_form.html
@@ -1,3 +1,5 @@
+{% load url from future %}
+
<form method="post" class="likeform"
action="{% url 'message_vote' mlist_fqdn=mlist.name message_id_hash=message_id_hash %}">
{% csrf_token %}
diff --git a/hyperkitty/templates/messages/message.html b/hyperkitty/templates/messages/message.html
index f5ed65f..9b072ef 100644
--- a/hyperkitty/templates/messages/message.html
+++ b/hyperkitty/templates/messages/message.html
@@ -1,3 +1,4 @@
+{% load url from future %}
{% load storm %}
{% load gravatar %}
{% load hk_generic %}
diff --git a/hyperkitty/templates/messages/reply_form.html b/hyperkitty/templates/messages/reply_form.html
index 755488c..ce31031 100644
--- a/hyperkitty/templates/messages/reply_form.html
+++ b/hyperkitty/templates/messages/reply_form.html
@@ -1,3 +1,5 @@
+{% load url from future %}
+
<a class="reply{% if not user.is_authenticated %} disabled" title="You must be logged-in to reply.{% endif %}" href="#">Reply</a>
<div class="reply-form dropdown">
<p class="reply-tools">[<a href="#" class="quote">Quote</a>]</p>
diff --git a/hyperkitty/templates/thread.html b/hyperkitty/templates/thread.html
index ee93aa3..9de03b1 100644
--- a/hyperkitty/templates/thread.html
+++ b/hyperkitty/templates/thread.html
@@ -1,5 +1,6 @@
{% extends "base.html" %}
+{% load url from future %}
{% load gravatar %}
{% load hk_generic %}
{% load storm %}
diff --git a/hyperkitty/templates/thread_list.html b/hyperkitty/templates/thread_list.html
index 0fc0f81..d31b02f 100644
--- a/hyperkitty/templates/thread_list.html
+++ b/hyperkitty/templates/thread_list.html
@@ -1,4 +1,5 @@
{% extends "base.html" %}
+{% load url from future %}
{% load gravatar %}
{% load hk_generic %}
diff --git a/hyperkitty/templates/threads/month_list.html b/hyperkitty/templates/threads/month_list.html
index 9143704..1d8f381 100644
--- a/hyperkitty/templates/threads/month_list.html
+++ b/hyperkitty/templates/threads/month_list.html
@@ -1,3 +1,4 @@
+{% load url from future %}
{% load hk_generic %}
<div id="months-list" class="span2">
diff --git a/hyperkitty/templates/threads/right_col.html b/hyperkitty/templates/threads/right_col.html
index 1c9ca26..cbc7772 100644
--- a/hyperkitty/templates/threads/right_col.html
+++ b/hyperkitty/templates/threads/right_col.html
@@ -1,3 +1,4 @@
+{% load url from future %}
{% load gravatar %}
{% load hk_generic %}
diff --git a/hyperkitty/templates/threads/summary_thread.html b/hyperkitty/templates/threads/summary_thread.html
index 4f76d5b..c201b36 100644
--- a/hyperkitty/templates/threads/summary_thread.html
+++ b/hyperkitty/templates/threads/summary_thread.html
@@ -1,3 +1,4 @@
+{% load url from future %}
{% load hk_generic %}
{% load storm %}
diff --git a/hyperkitty/templates/threads/summary_thread_large.html b/hyperkitty/templates/threads/summary_thread_large.html
index 40a244f..66b1a78 100644
--- a/hyperkitty/templates/threads/summary_thread_large.html
+++ b/hyperkitty/templates/threads/summary_thread_large.html
@@ -1,3 +1,4 @@
+{% load url from future %}
{% load gravatar %}
{% load hk_generic %}
{% load storm %}
diff --git a/hyperkitty/templates/threads/tags.html b/hyperkitty/templates/threads/tags.html
index 0715739..bafcc60 100644
--- a/hyperkitty/templates/threads/tags.html
+++ b/hyperkitty/templates/threads/tags.html
@@ -1,3 +1,5 @@
+{% load url from future %}
+
<span id="tag-title">tags </span>({{tags|length}})
{% if tags|length %}
<ul class="inline">
diff --git a/hyperkitty/templates/user_profile.html b/hyperkitty/templates/user_profile.html
index e409c2e..f6a4d16 100644
--- a/hyperkitty/templates/user_profile.html
+++ b/hyperkitty/templates/user_profile.html
@@ -1,4 +1,5 @@
{% extends "base.html" %}
+{% load url from future %}
{% load i18n %}
{% load hk_generic %}
{% load gravatar %}