ciudadanointeligente/partidopublico

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

Summary

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

<h1>Listing Distritos</h1>

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

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

<br>

<%= link_to 'New Distrito', new_distrito_path %>