To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / views / news / _form.html.erb @ 1531:ae8145b28b2b

History | View | Annotate | Download (499 Bytes)

1
<%= error_messages_for @news %>
2

    
3
<div class="box tabular">
4
<p><%= f.text_field :title, :required => true, :size => 60 %></p>
5
<p><%= f.text_area :summary, :cols => 60, :rows => 2 %></p>
6
<p><%= f.text_area :description, :required => true, :cols => 60, :rows => 15, :class => 'wiki-edit' %></p>
7
<p id="attachments_form"><label><%= l(:label_attachment_plural) %></label><%= render :partial => 'attachments/form', :locals => {:container => @news} %></p>
8
</div>
9

    
10
<%= wikitoolbar_for 'news_description' %>