diff options
author | Aurélien Bompard <aurelien@bompard.org> | 2012-10-29 12:38:02 +0100 |
---|---|---|
committer | Aurélien Bompard <aurelien@bompard.org> | 2012-10-29 12:38:02 +0100 |
commit | 7b692b09d230349756358b6d8c0cadd8429492f2 (patch) | |
tree | 7a5d6bade42bcab9424981f2b5b069d98f477db3 /hyperkitty/templates | |
parent | ec83ca078f90a2f5ede73ffa2666d7653b5c1d56 (diff) | |
download | hyperkitty-7b692b09d230349756358b6d8c0cadd8429492f2.tar.gz hyperkitty-7b692b09d230349756358b6d8c0cadd8429492f2.tar.xz hyperkitty-7b692b09d230349756358b6d8c0cadd8429492f2.zip |
Add a button back to the thread in the message view
Diffstat (limited to 'hyperkitty/templates')
-rw-r--r-- | hyperkitty/templates/message.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/hyperkitty/templates/message.html b/hyperkitty/templates/message.html index 35c3add..6c26c4f 100644 --- a/hyperkitty/templates/message.html +++ b/hyperkitty/templates/message.html @@ -1,5 +1,7 @@ {% extends "base.html" %} {% load gravatar %} +{% load hk_generic %} +{% load storm %} {% block additional_stylesheets %} <link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/thread.css" /> @@ -8,6 +10,9 @@ {% block content %} <header> + <a class="thread-back" + href="{% url thread threadid=message.thread_id, mlist_fqdn=list_address %}"> + </a> <h1>{{ message.subject }}</h1> </header> |