rafaels88/pinfluence

View on GitHub
apps/admin/templates/people/index.html.erb

Summary

Maintainability
Test Coverage
<%= render partial: 'people/title' %>
<%= render partial: 'people/menu' %>

<table class="ui celled padded table">
  <thead>
    <tr><th class="single line">Name</th>
    <th></th>
    <th></th>
  </tr></thead>
  <tbody>
    <% people.each do |person| %>
      <tr>
        <td>
          <%= person.name %>
        </td>
        <td class="center aligned">
          <a href="<%= routes.edit_person_path(id: person.id) %>" class="ui teal tiny button">Edit</a>
        </td>
        <td class="center aligned">
          <%=
            form_for :influcencer, routes.person_path(id: person.id), style: 'display: inline-block', method: :delete do
              submit 'Delete', { class: "ui red tiny button" }
            end
          %>
        </td>
      </tr>
    <% end %>
  </tbody>
</table>