Advertisement
Guest User

Untitled

a guest
Dec 20th, 2014
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1.  
  2. <br />
  3. <br />
  4. <div id="entry-<%= entry.id %>">
  5. <h3><%= entry.title %></h3>
  6. <small>Posted <%= time_ago_in_words(entry.created_at) %> ago.</small>
  7. <br />
  8. <%= render entry.photos %>
  9. <%= simple_format(entry.content) %>
  10. <br />
  11.  
  12. <% if entry.comments.length > 0 %>
  13. <button class="show_comments" id="show_comments-<%= entry.id %>">show comments(<%= entry.comments.length %>)</button>
  14. <% end %>
  15.  
  16. <ul id='comment_list-<%= entry.id %>' class='comment_lists'>
  17. <%= render entry.comments %>
  18. </ul>
  19.  
  20. <div id="comment-<%= entry.id %>"></div>
  21.  
  22. <br />
  23.  
  24. <div id="comment_button-<%= entry.id %>">
  25. <% if current_user.nil? %>
  26. <%= link_to "Comment", new_user_session_path, class: "btn btn-primary" %>
  27. <% else %>
  28. <%= link_to "Comment", new_entry_comment_path(entry.id), class: "btn btn-primary", remote: true %>
  29. <%end%>
  30. </div>
  31. <%= link_to 'Edit', edit_entry_path(entry.id) if current_user.try(:admin?) %>
  32. </div>
  33. <br />
  34. <br />
  35. <br />
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement