Files
danbooru/app/views/pools/new.html.erb
2013-05-13 15:30:49 -04:00

19 lines
429 B
Plaintext

<div id="c-pools">
<div id="c-new">
<%= simple_form_for(@pool) do |f| %>
<h1>New Pool</h1>
<%= f.input :name %>
<%= f.input :description %>
<%= f.input :post_ids, :label => "Posts" %>
<%= f.input :is_active %>
<%= f.button :submit %>
<% end %>
</div>
</div>
<%= render "secondary_links" %>
<% content_for(:page_title) do %>
New Pool - <%= Danbooru.config.app_name %>
<% end %>