From 135667fb2cc820abe02826e378a68f3aead527af Mon Sep 17 00:00:00 2001 From: Aamir Khan Date: Sun, 24 Jun 2012 16:48:35 -0400 Subject: Moved add_tag_form to templates/threads/ --- views/thread.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'views/thread.py') diff --git a/views/thread.py b/views/thread.py index b18583c..d34e57b 100644 --- a/views/thread.py +++ b/views/thread.py @@ -26,7 +26,7 @@ class AddTagForm(forms.Form): @login_required def add_tag(request, mlist_fqdn, email_id): """ Add a tag to a given message. """ - t = loader.get_template('add_tag_form.html') + t = loader.get_template('threads/add_tag_form.html') if request.method == 'POST': form = AddTagForm(request.POST) if form.is_valid(): -- cgit