initial template selection tweaks to result notification

This commit is contained in:
James Tauber 2012-09-08 18:19:06 -04:00
parent 1c727a989b
commit 6186a913df

View file

@ -13,12 +13,25 @@
{% block body %}
<h1>Result Notification</h1>
<span class="action-counter">0</span> selected
<form method="post" action="{% url result_notification_prepare section_slug status %}">
{% csrf_token %}
<p>
Select one or more proposals (<span class="action-counter">0</span> currently selected)
<br/>
then pick an email template
<select>
<option value="0">[blank]</option>
{% for template in notification_templates %}
<option value="{{ template.pk }}">{{ template.label }}</option>
{% endfor %}
</select>
<br/>
<button type="submit" class="btn btn-primary">Next <i class="icon icon-chevron-right"></i></button>
</p>
<table class="table table-striped table-bordered">
<thead>
<th><input type="checkbox" id="action-toggle"></th>
@ -57,9 +70,6 @@
{% endfor %}
</tbody>
</table>
<button type="submit" class="btn btn-primary">POST IT</button>
</form>
{% endblock %}