Created
April 20, 2009 02:29
-
-
Save wiscoDude/98331 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% 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