impress/app/helpers/outfits_helper.rb

16 lines
422 B
Ruby
Raw Normal View History

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