summaryrefslogtreecommitdiffstats
path: root/app/views/messages/_form.rhtml
blob: e484baf2f2734d2da541c6d56e31b040c5955c65 (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 => 120 %></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>