Skip to content

Instantly share code, notes, and snippets.

@salami-art
Created November 20, 2013 08:34
Show Gist options
  • Save salami-art/7559759 to your computer and use it in GitHub Desktop.
Save salami-art/7559759 to your computer and use it in GitHub Desktop.
[............]
# code wich is inside the loop and has the odd, even cycle css pattern
<% @books.each do |book| %>
<tr class=<%= cycle("odd", "even") %>>
<td><%= book.id %></td>
<td><%= book.author.name %></td>
<td><%= book.title %></td>
</tr>
<% end %>
# code I want to be inside the pattern
<tr>
<td><%= link_to "add a book ...", new_book_path %></td>
</tr>
[..........]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment