Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 7th, 2012  |  syntax: None  |  size: 1.45 KB  |  hits: 10  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <%= form_for @company do |f| %>
  2.   <% if @account_id %>
  3.     <%= f.hidden_field :account_id, :value => @account_id %>
  4.   <% end %>
  5.   <p>
  6.     <%= f.label :name, "Company Name" %>
  7.     <%= f.text_field :name %>
  8.   </p>
  9.   <%= fields_for :address do |a| %>
  10.     <p>
  11.       <%= a.label :street1, "Address 1" %>
  12.       <%= a.text_field :street1 %>
  13.     </p>
  14.  
  15.     <p>
  16.       <%= a.label :street2, "Address 2" %>
  17.       <%= a.text_field :street2 %>
  18.     </p>
  19.  
  20.     <p>
  21.       <%= a.label :city %>
  22.       <%= a.text_field :city %>
  23.     </p>
  24.  
  25.     <p>
  26.       <%= a.label :state %>
  27.       <%= a.text_field :state %>
  28.     </p>
  29.  
  30.     <p>
  31.       <%= a.label :zipcode %>
  32.       <%= a.text_field :zipcode %>
  33.     </p>
  34.  
  35.     <p>
  36.       <%= a.label :country %>
  37.       <%= select_tag :address_country, options_for_select(countries_list.unshift("")), :selected => "", :tabindex => "1", :class => "chzn-select" %>
  38.     </p>
  39.   <% end %>
  40.  
  41.   <p>
  42.     <%= f.label :language %>
  43.     <%= select_tag :company_language, options_for_select(languages_list.unshift("")), :selected => "", :tabindex => "1", :class => "chzn-select" %>
  44.   </p>
  45.  
  46.   <p>
  47.     <%= f.label :time_zone %>
  48.     <%= f.time_zone_select :time_zone %>
  49.   </p>
  50.  
  51.   <p>
  52.     <%= f.label :website %>
  53.     <%= f.text_field :website %>
  54.   </p>
  55.  
  56.   <p>
  57.     <%= f.label :phone %>
  58.     <%= f.text_field :phone %>
  59.   </p>
  60.  
  61.   <p>
  62.     <%= f.label :fax %>
  63.     <%= f.text_field :fax %>
  64.   </p>
  65.  
  66.   <%= f.submit "Submit" %>
  67. <% end %>
  68. <script type="text/javascript"> $(".chzn-select").chosen(); </script>