summaryrefslogtreecommitdiff
path: root/app/views/events/index.html.erb
diff options
context:
space:
mode:
authorhukl <contact@smyck.org>2009-03-10 23:51:03 +0100
committerhukl <contact@smyck.org>2009-03-10 23:51:03 +0100
commitc9fa047402fdc009319dca7b05455e8ce73eaee7 (patch)
tree232bcb793cb187a50ec38343f8f93a3901492c2f /app/views/events/index.html.erb
parentd987886a9a94c6bad53ff7c7a241b85ea0b57de7 (diff)
remove event resource temporarily until its finalized
Diffstat (limited to 'app/views/events/index.html.erb')
-rw-r--r--app/views/events/index.html.erb20
1 files changed, 0 insertions, 20 deletions
diff --git a/app/views/events/index.html.erb b/app/views/events/index.html.erb
deleted file mode 100644
index ad0ca8d..0000000
--- a/app/views/events/index.html.erb
+++ /dev/null
@@ -1,20 +0,0 @@
1<h1>Listing events</h1>
2
3<table>
4 <tr>
5 <th>Serialized event</th>
6 </tr>
7
8<% for event in @events %>
9 <tr>
10 <td><%=h event.serialized_event %></td>
11 <td><%= link_to 'Show', event %></td>
12 <td><%= link_to 'Edit', edit_event_path(event) %></td>
13 <td><%= link_to 'Destroy', event, :confirm => 'Are you sure?', :method => :delete %></td>
14 </tr>
15<% end %>
16</table>
17
18<br />
19
20<%= link_to 'New event', new_event_path %>