summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templates/message_new.html
blob: c630127326760e4c5254e882714a83e9a5d0369c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{% extends "base.html" %}
{% load gravatar %}
{% load hk_generic %}
{% load storm %}


{% block title %}
Create a new thread - {{ mlist.display_name|default:mlist.name|escapeemail }} - {{ app_name|title }}
{% endblock %}

{% block content %}

<div class="row-fluid">

{% include 'threads/month_list.html' %}

	<div class="span7">

		<div class="message-header">
			<h1>Create a new thread</h1>
		</div>

		<section id="thread_content">
			{% include 'messages/reply_form.html' %}
		</section>

	</div>

</div>

{% endblock %}

{# vim: set noet: #}