socialforge/app/views/memos/_topic_form.html.erb

18 lines
582 B
Plaintext
Raw Normal View History

2013-11-23 20:56:22 +08:00
<%= labelled_form_for(@memo, :url => forum_memos_path) do |f| %>
<% if @memo.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(@memo.errors.count, "error") %> prohibited this memo from being saved:</h2>
<ul>
<% @memo.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>
<div class="actions">
<p><%= f.text_field :subject, :required => true %></p>
<p><%= f.text_field :content, :required => true, :size => 80 %></p>
<%= f.submit %>
</div>
<% end %>