Files
danbooru/app/views/pool_elements/_new.html.erb
2013-02-17 23:39:43 -05:00

34 lines
906 B
Plaintext

<div id="c-pool-elements">
<div id="a-new">
<%= form_tag(pool_element_path, :class => "simple_form") do %>
<%= hidden_field_tag "post_id", @post.id %>
<div class="input">
<label>Pool</label>
<%= select_tag "pool_id", options_for_select([["", ""]] + Pool.options) %>
</div>
<div class="input">
<label>Pool Name</label>
<%= text_field_tag "pool_name", "", :size => 20 %>
<span class="hint">Type the first two characters of a pool name</span>
</div>
<div class="input">
<%= submit_tag "Select" %>
</div>
<% end %>
<% if recent_updated_pools.any? %>
<div>
<h1>Recent Pools</h1>
<ul id="recent-pools">
<% recent_updated_pools.each do |pool| %>
<li><%= pool.name %></li>
<% end %>
</ul>
</div>
<% end %>
</div>
</div>