summaryrefslogtreecommitdiff
path: root/app/views/occurrences/show.html.erb
blob: 9e831cf3dc7e7ca1db6bf5817b029de0038c1cf4 (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
<p>
  <b>Summary:</b>
  <%=h @occurrence.summary %>
</p>

<p>
  <b>Start time:</b>
  <%=h @occurrence.start_time %>
</p>

<p>
  <b>End time:</b>
  <%=h @occurrence.end_time %>
</p>

<p>
  <b>Node:</b>
  <%=h @occurrence.node_id %>
</p>

<p>
  <b>Event:</b>
  <%=h @occurrence.event_id %>
</p>


<%= link_to 'Edit', edit_occurrence_path(@occurrence) %> |
<%= link_to 'Back', occurrences_path %>