New topic

<%= form_for @topic, :html => { :multipart => true } do |f| %> <%= f.error_messages %> <%= f.hidden_field :forum_id %>

<%= f.label :title %>
<%= f.text_field :title, :size => 50 %>

<%= f.text_area :first_post, :rows => 15, :cols => 108 %>

<%= f.submit 'Create the topic' %>

<% end %> <%= link_to 'Back', @topic.forum %>