Skip to content

Instantly share code, notes, and snippets.

@Yax
Created September 4, 2009 21:31
Show Gist options
  • Select an option

  • Save Yax/181151 to your computer and use it in GitHub Desktop.

Select an option

Save Yax/181151 to your computer and use it in GitHub Desktop.
<table>
<tr>
<th>Od:</th>
<th>Wiadomosc:</th>
</tr>
<% for message in messages %>
<tr>
<td><%=h message.from %></td>
<td><%=h truncate(message.content, :length => 80) %></td>
<td><%= link_to 'Pokaz', message %></td>
<td><%= link_to 'Edytuj', edit_message_path(message) %></td>
<td><%= link_to 'Usun', message, :confirm => "Jestes pewny?", :method => :delete %></td>
</tr>
<% end %>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment