summaryrefslogtreecommitdiffstats
path: root/hyperkitty/views/thread.py
diff options
context:
space:
mode:
authorAurélien Bompard <aurelien@bompard.org>2013-01-25 16:34:36 +0100
committerAurélien Bompard <aurelien@bompard.org>2013-01-25 16:34:36 +0100
commitfd1616185405265189dc6d5ce70cc6c16456088c (patch)
tree421ef5b038fb552d3f4e853cf81a4015dfbb309a /hyperkitty/views/thread.py
parentd4ecad9325292f865e58b9fe7f58927f6e5af953 (diff)
downloadhyperkitty-fd1616185405265189dc6d5ce70cc6c16456088c.tar.gz
hyperkitty-fd1616185405265189dc6d5ce70cc6c16456088c.tar.xz
hyperkitty-fd1616185405265189dc6d5ce70cc6c16456088c.zip
Fix accordion widget and add_tag button
Diffstat (limited to 'hyperkitty/views/thread.py')
-rw-r--r--hyperkitty/views/thread.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/hyperkitty/views/thread.py b/hyperkitty/views/thread.py
index fc78cbe..397e45d 100644
--- a/hyperkitty/views/thread.py
+++ b/hyperkitty/views/thread.py
@@ -40,7 +40,7 @@ from forms import *
from hyperkitty.lib import get_months, get_store, stripped_subject
-def thread_index(request, mlist_fqdn, threadid):
+def thread_index(request, mlist_fqdn, threadid, month=None, year=None):
''' Displays all the email for a given thread identifier '''
search_form = SearchForm(auto_id=False)
t = loader.get_template('thread.html')
@@ -122,7 +122,7 @@ def thread_index(request, mlist_fqdn, threadid):
'list_address': mlist_fqdn,
'search_form': search_form,
'addtag_form': tag_form,
- 'month': 'Thread',
+ 'month': thread.date_active,
'participants': participants,
'first_mail': thread.starting_email,
'replies': list(emails)[1:],