improved styling on email form
This commit is contained in:
parent
b754bb9add
commit
3d362300bb
1 changed files with 4 additions and 6 deletions
|
@ -25,13 +25,11 @@
|
||||||
|
|
||||||
|
|
||||||
<form method="post" action="{% url result_notification_send section_slug status %}">
|
<form method="post" action="{% url result_notification_send section_slug status %}">
|
||||||
Subject:
|
<label>Subject</label>
|
||||||
<input name="subject" value="{{ notification_template.subject }}" />
|
<input type="text" name="subject" class="span5" value="{{ notification_template.subject }}" />
|
||||||
<br/>
|
<br/>
|
||||||
Body:
|
<label>Body</label>
|
||||||
<textarea name="body">
|
<textarea class="span5" rows="10" name="body">{{ notification_template.body }}</textarea>
|
||||||
{{ notification_template.body }}
|
|
||||||
</textarea>
|
|
||||||
<br/>
|
<br/>
|
||||||
<input type="hidden" name="notification_template" value="{{ notification_template.pk }}" />
|
<input type="hidden" name="notification_template" value="{{ notification_template.pk }}" />
|
||||||
<input type="hidden" name="proposal_pks" value="{{ proposal_pks }}" />
|
<input type="hidden" name="proposal_pks" value="{{ proposal_pks }}" />
|
||||||
|
|
Loading…
Reference in a new issue