Guest User

Untitled

a guest
Jul 23rd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <% form_for(@profile) do |f| %>
  2. <%= f.error_messages %>
  3.  
  4. <p>
  5. <%= f.label :text_update %><br />
  6. <%= f.text_area :text_update %>
  7. </p>
  8.  
  9. <%= f.submit 'Create' %>
  10. </p>
  11. <% end %>
  12. <h1>What's going on</h1>
  13. <div id="status">
  14. <% @profiles.each do |profile| %>
  15. <%= link_to 'New status', new_profile_path%>
  16. </b>
  17. <br />
  18.  
  19. <%= simple_format profile.text_update %><br />
  20. <br />
  21. <%= link_to 'Delete status', profile, :confirm => 'Are you sure?', :method => :delete %>
  22. <% end %>
  23. </div>
Add Comment
Please, Sign In to add comment