annotate app/views/news/_form.html.erb @ 1115:433d4f72a19b redmine-2.2

Update to Redmine SVN revision 11137 on 2.2-stable branch
author Chris Cannam
date Mon, 07 Jan 2013 12:01:42 +0000
parents cbb26bc654de
children
rev   line source
Chris@1115 1 <%= error_messages_for @news %>
Chris@1115 2
Chris@0 3 <div class="box tabular">
Chris@0 4 <p><%= f.text_field :title, :required => true, :size => 60 %></p>
Chris@0 5 <p><%= f.text_area :summary, :cols => 60, :rows => 2 %></p>
Chris@0 6 <p><%= f.text_area :description, :required => true, :cols => 60, :rows => 15, :class => 'wiki-edit' %></p>
Chris@1115 7 <p id="attachments_form"><label><%= l(:label_attachment_plural) %></label><%= render :partial => 'attachments/form', :locals => {:container => @news} %></p>
Chris@0 8 </div>
Chris@0 9
Chris@0 10 <%= wikitoolbar_for 'news_description' %>