Created
October 16, 2011 06:02
-
-
Save tetu1225/1290563 to your computer and use it in GitHub Desktop.
Rails Cycle ヘルパー
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
<table> | |
<tr> | |
<th>名前</th> | |
<th>性別</th> | |
<th>血液型</th> | |
</tr> | |
<% @people.each do |person| %> | |
<tr style="background-color:<%= cycle('#FFffFF', '#FFff99') %> | |
<td><%= person.name %></td> | |
<td><%= person.sex %></td> | |
<td><%= person.blood %></td> | |
</tr> | |
</table> |
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
%table{:border => 1} | |
%tr | |
%th 名前 | |
%th 性別 | |
%th 血液型 | |
- @people.each do |person| | |
%tr{:style => "background-color:#{cycle '#FFffFF', '#55ff99'}"} | |
%td= person.name | |
%td= person.sex | |
%td= person.blood |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment