Decrease size of pool name input
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
<div id="a-edit">
|
||||
<%= simple_form_for(@pool) do |f| %>
|
||||
<h1>Edit Pool: <%= @pool.pretty_name %></h1>
|
||||
<%= f.input :name, :input_html => { :value => @pool.pretty_name } %>
|
||||
<%= f.input :name, :as => :string, :input_html => { :value => @pool.pretty_name } %>
|
||||
<%= f.input :description %>
|
||||
<%= f.input :post_ids, :label => "Posts" %>
|
||||
<%= f.input :category, :collection => ["series", "collection"], :include_blank => false %>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<div id="c-new">
|
||||
<%= simple_form_for(@pool) do |f| %>
|
||||
<h1>New Pool</h1>
|
||||
<%= f.input :name %>
|
||||
<%= f.input :name, :as => :string %>
|
||||
<%= f.input :description %>
|
||||
<%= f.input :post_ids, :label => "Posts" %>
|
||||
<%= f.input :category, :collection => ["series", "collection"], :include_blank => false %>
|
||||
|
||||
Reference in New Issue
Block a user