improved styling on email form

This commit is contained in:
James Tauber 2012-09-08 18:49:08 -04:00
parent b754bb9add
commit 3d362300bb

View file

@ -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 }}" />