summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templates/message.html
blob: 142521842e87fa4cee57e80e913aa32ad8f369dc (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 %}">
	</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: #}