Skip to content

Instantly share code, notes, and snippets.

@wiscoDude
Created April 20, 2009 02:29
Show Gist options
  • Save wiscoDude/98331 to your computer and use it in GitHub Desktop.
Save wiscoDude/98331 to your computer and use it in GitHub Desktop.
<% for event in @events %>
<tr>
<td><%=h event.title %></td>
<td><%=h event.date_of_event.to_s(:long) %></td>
<td><%= link_to event.url, event.url %></td>
<td><%=h event.address %></td>
<td><%= link_to 'Show', event %></td>
<td><%= link_to 'Edit', edit_user_event_path(event) %></td>
<td><%= link_to 'Delete', event, :confirm => 'Are you sure?', :method => :delete %></td>
</tr>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment