Guest User

Untitled

a guest
Jul 21st, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <h1>New topic</h1>
  2.  
  3. <% form_for(@topic) do |f| %>
  4. <%= f.error_messages %>
  5. <% if params[:forum] %><input type="hidden" id="topic_forum_id" name="topic[forum_id]" value="<%= params[:forum] %>" /><% end %>
  6. <p>
  7. <%= f.label :title %><br />
  8. <%= f.text_field :title %>
  9. </p>
  10. <p>
  11. <textarea name="post[content]" cols="80" rows="20"><%= @post.content %></textarea>
  12. </p>
  13. <p><%= f.submit "Create" %></p>
  14. <% end %>
Add Comment
Please, Sign In to add comment