26 lines
562 B
Plaintext
26 lines
562 B
Plaintext
<p id="notice"><%= notice %></p>
|
|
|
|
<h1>Dining Charges</h1>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th colspan="3"></th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<% @dining_charges.each do |dining_charge| %>
|
|
<tr>
|
|
<td><%= link_to 'Show', dining_charge %></td>
|
|
<td><%= link_to 'Edit', edit_dining_charge_path(dining_charge) %></td>
|
|
<td><%= link_to 'Destroy', dining_charge, method: :delete, data: { confirm: 'Are you sure?' } %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
|
|
<br>
|
|
|
|
<%= link_to 'New Dining Charge', new_dining_charge_path %>
|