vital-edu/sala-de-espera

View on GitHub
app/views/service_categories/index.html.erb

Summary

Maintainability
Test Coverage
<p id="notice"><%= notice %></p>

<h1>Service Categories</h1>

<table>
  <thead>
    <tr>
      <th>Name</th>
      <th>Description</th>
      <th>Price</th>
      <th colspan="3"></th>
    </tr>
  </thead>

  <tbody>
    <% @service_categories.each do |service_category| %>
      <tr>
        <td><%= service_category.name %></td>
        <td><%= service_category.description %></td>
        <td><%= service_category.price %></td>
        <td><%= link_to 'Show', service_category %></td>
        <td><%= link_to 'Edit', edit_service_category_path(service_category) %></td>
        <td><%= link_to 'Destroy', service_category, method: :delete, data: { confirm: 'Are you sure?' } %></td>
      </tr>
    <% end %>
  </tbody>
</table>

<br>

<%= link_to 'New Service Category', new_service_category_path %>