Guest User

Untitled

a guest
Apr 19th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. <%= link_to 'New House', new_house_path %>
  2. <h1><%= @house.name %></h1>
  3. <p><%= @house.street %> @ <%= @house.zipcode %></p>
  4.  
  5. <%= observe_form("edit_house_1", :frequency => 0.10, :function => "alert('Element changed')") %>
  6.  
  7. <% @house.current_residents.each_with_index do |resident, i| %>
  8. <p>
  9. <%= @residents_names[i] %>
  10. <% unless resident.is_approve_for_house?(@house) or resident.id == @user.id %>
  11. <%= link_to_remote "(approve this user)", :url => resident_path(resident), :method => 'put' %>
  12. <% end %>
  13. </p>
  14. <% end %>
  15.  
  16. <% form_for @user.houses[0] do |f| %>
  17. <%= f.select( :name, @user.houses.collect { |h| [h.name, h.id] } ) %>
  18. <% end %>
Add Comment
Please, Sign In to add comment