Decrease size of pool name input

This commit is contained in:
Toks
2013-07-11 20:47:46 -04:00
parent 6b237bd013
commit cb5c4a50c5
2 changed files with 2 additions and 2 deletions

View File

@@ -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 %>

View File

@@ -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 %>