summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templates/message.html
blob: 947df56a16cd352675fed6d1dd019c6fce05823b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends "base.html" %}
{% load gravatar %}
{% load hk_generic %}
{% load storm %}

{% block content %}

<div class="message-header">
	<a class="thread-back"
		href="{% url thread threadid=message.thread_id, mlist_fqdn=list_address %}#{{message.message_id_hash}}">
	</a> {# the background image will be a "back to thread" button #}
	<h1>{{ message.subject }}</h1>
</div>

<section id="thread_content">
	{% include 'messages/first_email.html' with first_mail=message %}
</section>

{% endblock %}

{# vim: set noet: #}