You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_form.html.erb 556B

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