2010-11-05 15:45:05 -07:00
|
|
|
module OutfitsHelper
|
|
|
|
def destination_tag(value)
|
|
|
|
hidden_field_tag 'destination', value, :id => nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def pet_attribute_select(name, collection, value=nil)
|
|
|
|
select_tag name,
|
|
|
|
options_from_collection_for_select(collection, :id, :human_name, value)
|
|
|
|
end
|
|
|
|
|
2010-11-07 14:19:47 -08:00
|
|
|
def pet_name_tag(options={})
|
|
|
|
options = {:spellcheck => false, :id => nil}.merge(options)
|
|
|
|
text_field_tag 'name', nil, options
|
2010-11-05 15:45:05 -07:00
|
|
|
end
|
|
|
|
end
|