41 lines
997 B
HTML
41 lines
997 B
HTML
{% extends "base.html" %}
|
|
{% load ietf_filters %}
|
|
{% block title %}Send ballot position email for {{ ad }}{% endblock %}
|
|
|
|
{% block morecss %}
|
|
form.send-ballot pre {
|
|
margin: 0;
|
|
padding: 4px;
|
|
border-top: 4px solid #eee;
|
|
border-bottom: 4px solid #eee;
|
|
}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Send ballot position email for {{ ad }}</h1>
|
|
|
|
<form class="send-ballot" action="" method="POST">
|
|
<table>
|
|
<tr><th>From:</th> <td>{{ frm }}</td></tr>
|
|
<tr><th>To:</th> <td>{{ to }}</td></tr>
|
|
<tr>
|
|
<th>Cc:<br/>
|
|
<span class="help">separated<br/> by comma</span></th>
|
|
<td><input type="text" name="cc" value="" size="75" /></td>
|
|
</tr>
|
|
<tr><th>Subject:</th> <td>{{ subject }}</td></tr>
|
|
<tr>
|
|
<th>Body:</th>
|
|
<td><pre>{{ body|wrap_text }}</pre></td>
|
|
</tr>
|
|
<tr>
|
|
<td></td>
|
|
<td class="actions">
|
|
<a href="{{ back_url }}">Back</a>
|
|
<input type="submit" value="Send"/>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
{% endblock %}
|