Files
danbooru/app/views/pools/new.html.erb
r888888888 e9b877f326 fixes #1858
2013-07-18 16:23:04 -07:00

21 lines
621 B
Plaintext

<div id="c-pools">
<div id="c-new">
<%= simple_form_for(@pool) do |f| %>
<h1>New Pool</h1>
<%= f.input :name, :as => :string %>
<%= dtext_field "pool", "description" %>
<%= f.input :post_ids, :label => "Posts" %>
<%= f.input :category, :collection => ["series", "collection"], :include_blank => false %>
<%= f.input :is_active %>
<%= f.button :submit, "Submit" %>
<%= dtext_preview_button "pool", "description" %>
<% end %>
</div>
</div>
<%= render "secondary_links" %>
<% content_for(:page_title) do %>
New Pool - <%= Danbooru.config.app_name %>
<% end %>