Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2017
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. %h1 Map
  2. #map-container
  3. #map-canvas
  4. #attorneys{ data: {attorneys: @attorneys.to_json}}
  5. #courthouses{ data: {courthouses: @courthouses.to_json}}
  6. %br
  7. = select_tag "states", options_from_collection_for_select(State.all, "id", "abbreviation")
  8. = check_box_tag 'attorneys', '1'
  9. = label_tag "attorneys"
  10. = check_box_tag "courthouses", '1'
  11. = label_tag "courthouses"
  12.  
  13. = button_tag "Search", id: "filter-map"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement