blob: 0e9985725795d9e9959e6fdcda07df0befde5fca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<h1>Listing occurrences</h1>
<table>
<tr>
<th>Summary</th>
<th>Start time</th>
<th>End time</th>
<th>Node</th>
<th>Event</th>
</tr>
<% @occurrences.each do |occurrence| %>
<tr>
<td><%=h occurrence.summary %></td>
<td><%=h occurrence.start_time %></td>
<td><%=h occurrence.end_time %></td>
<td><%=h occurrence.node_id %></td>
<td><%=h occurrence.event_id %></td>
<td><%= link_to 'Show', occurrence %></td>
<td><%= link_to 'Edit', edit_occurrence_path(occurrence) %></td>
<td><%= button_to 'Destroy', occurrence, method: :delete, form: { data: { confirm: 'Are you sure?' } } %></td>
</tr>
<% end %>
</table>
<br />
<%= link_to 'New occurrence', new_occurrence_path %>
|