Skip to content

Instantly share code, notes, and snippets.

@borisd
Created January 19, 2014 08:30
Show Gist options
  • Save borisd/8501979 to your computer and use it in GitHub Desktop.
Save borisd/8501979 to your computer and use it in GitHub Desktop.
Template for users list
<h1>User list</h1>
<table>
<tr>
<th>Id</th>
<th>Username</th>
</tr>
- For each user
<tr>
<td><%= user.id %></td>
<td><%= link_to(user.username, user) %></td>
</tr>
-
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment