Skip to content

Instantly share code, notes, and snippets.

@ChadyG
Created April 24, 2010 00:01
Show Gist options
  • Save ChadyG/377325 to your computer and use it in GitHub Desktop.
Save ChadyG/377325 to your computer and use it in GitHub Desktop.
.list_even {
background-color: #F5F5F5;
}
.list_odd {
background-color: #DFDFDF;
}
<% @et_users.each do |etuser| %>
<tr class="list_<%= cycle('even','odd')%>">
<td><%=h etuser.UserID %></td>
<td><%= link_to 'Show', :controller => 'eldertech', :action => 'show', :id => etuser.UserID %></td>
</tr>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment