drhenner/ror_ecommerce

View on GitHub
app/views/admin/customer_service/comments/show.html.erb

Summary

Maintainability
Test Coverage
<h1> Comment </h1>

<ul>
  <li>
    <label>Note:</label>
    <%= @comment.note %>
  </li>
  <li>
    <label>Commentable Type:</label>
    <%= @comment.commentable_type %>
  </li>
  <li>
    <label>Author:</label>
    <%= @comment.author.try(:name) %>
  </li>
  <li>
    <label>User:</label>
    <%= @comment.user.try(:name) %>
  </li>
</ul>
<p>
  <%= link_to "View All", admin_customer_service_user_comments_path(customer), class: 'button' %>
  <%= link_to "Back to #{customer.name}", admin_user_path(customer), class: 'small button'  %>
</p>