summaryrefslogtreecommitdiffstats
path: root/app/views/messages/_form.rhtml
blob: 0d1ec73903030b3c46bff7027313daf93e7ec97d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<%= error_messages_for 'message' %>

<div class="box">
<!--[form:message]-->
<p><label><%= l(:field_subject) %></label><br />
<%= f.text_field :subject, :required => true, :size => 80 %></p>

<p><%= f.text_area :content, :required => true, :cols => 80, :rows => 15, :class => 'wiki-edit' %></p>
<%= wikitoolbar_for 'message_content' %>
<!--[eoform:message]-->

<span class="tabular">
<%= render :partial => 'attachments/form' %>
</div>