blob: c764c1aff90724386e7c7d6a7eb238c7c4ea2d64 (
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
34
35
36
37
38
39
40
41
42
|
{% extends "base.html" %}
{% load gravatar %}
{% load hk_generic %}
{% load storm %}
{% load crispy_forms_tags %}
{% 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>
<div class="new-thread-form">
<form method="post"
action="{% url message_new mlist_fqdn=mlist.name %}">
{% csrf_token %}
{{ post_form|crispy }}
<p class="buttons">
<button type="submit" class="submit btn btn-primary">Send</button>
or <a class="cancel" href="{% url archives_latest mlist_fqdn=mlist.name %}">cancel</a>
</p>
</form>
</div>
</div>
</div>
{% endblock %}
{# vim: set noet: #}
|