Files
danbooru/app/views/forum_topics/new.html.erb
2011-03-11 19:24:19 -05:00

24 lines
482 B
Plaintext

<div id="c-forum-topics">
<div id="a-new">
<h1>New Forum Topic</h1>
<div id="form-content">
<%= simple_form_for(@forum_topic) do |f| %>
<%= f.input :title %>
<%= f.simple_fields_for :original_post do |pf| %>
<%= pf.input :body %>
<% end %>
<%= f.button :submit, "Submit" %>
<% end %>
</div>
<div id="dtext-help">
<%= render "dtext/help" %>
</div>
</div>
</div>
<%= render "secondary_links" %>