ciudadanointeligente/partidopublico

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

Summary

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

<h1>Listing Procedimientos</h1>

<table>
  <thead>
    <tr>
      <th>Descripcion</th>
      <th colspan="3"></th>
    </tr>
  </thead>

  <tbody>
    <% @procedimientos.each do |procedimiento| %>
      <tr>
        <td><%= procedimiento.descripcion %></td>
        <td><%= link_to 'Show', procedimiento %></td>
        <td><%= link_to 'Edit', edit_procedimiento_path(procedimiento) %></td>
        <td><%= link_to 'Destroy', procedimiento, method: :delete, data: { confirm: 'Are you sure?' } %></td>
      </tr>
    <% end %>
  </tbody>
</table>

<br>

<%= link_to 'New Procedimiento', new_procedimiento_path %>