diff options
author | Aamir Khan <syst3m.w0rm@gmail.com> | 2012-06-20 02:52:33 -0400 |
---|---|---|
committer | Aamir Khan <syst3m.w0rm@gmail.com> | 2012-06-20 02:52:33 -0400 |
commit | c5c7fa5f7ff3f09ea735d3d054708fc2164792fb (patch) | |
tree | 2123d8f2a99377f2bb8950a10d3400ef5e6b9f58 /views/thread.py | |
parent | 9c1919af112d2203209ece9b78fd137144cec98c (diff) | |
download | hyperkitty-c5c7fa5f7ff3f09ea735d3d054708fc2164792fb.tar.gz hyperkitty-c5c7fa5f7ff3f09ea735d3d054708fc2164792fb.tar.xz hyperkitty-c5c7fa5f7ff3f09ea735d3d054708fc2164792fb.zip |
changing template name to load add_tag_form
Diffstat (limited to 'views/thread.py')
-rw-r--r-- | views/thread.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/thread.py b/views/thread.py index 2635492..b18583c 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('simple_form.html') + t = loader.get_template('add_tag_form.html') if request.method == 'POST': form = AddTagForm(request.POST) if form.is_valid(): |