Sha256: c749d7f79d9acf41f4ddc73d596950a032d41d348a037f0e558b94918766322e

Contents?: true

Size: 535 Bytes

Versions: 2

Compression:

Stored size: 535 Bytes

Contents

<p id="notice"><%= notice %></p>

<h1>Dates</h1>

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

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

<br>

<%= link_to 'New Date', new_date_path %>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
binda-0.0.3 app/views/binda/dates/index.html.erb
binda-0.0.2 app/views/binda/dates/index.html.erb