From fd1616185405265189dc6d5ce70cc6c16456088c Mon Sep 17 00:00:00 2001 From: Aurélien Bompard Date: Fri, 25 Jan 2013 16:34:36 +0100 Subject: Fix accordion widget and add_tag button --- hyperkitty/views/thread.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'hyperkitty/views/thread.py') 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:], -- cgit