Created
June 26, 2011 15:51
-
-
Save ybart/1047725 to your computer and use it in GitHub Desktop.
This file contains 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
<% charts_js %> | |
<section id="content" class="body"> | |
<table class="data"> | |
<%= @clips.count %> | |
<thead><tr> | |
<th><%= sort_link 'Title', :title %></th> | |
<th><%= sort_link 'Entrée', :in %></th> | |
<th><%= sort_link 'Classique', :gold %></th> | |
<th><%= sort_link 'Top 10', :top10_count %></th> | |
<th><%= sort_link 'Top 20', :top20_count %></th> | |
</tr></thead> | |
<tbody> | |
<% @clips.each do |clip| %> | |
<tr class="<%= cycle('odd', 'even') %>"> | |
<td><%= "#{clip.artist.name} - #{clip.title}" %></td> | |
<td><%= clip.rankings.first.jtop_id %></td> | |
<td><%= clip.rankings.last.jtop_id %></td> | |
<td><%= clip.top10_count %></td> | |
<td><%= clip.top20_count %></td> | |
</tr> | |
<% end %> | |
</tbody> | |
</table> | |
</section> |
Author
ybart
commented
Jun 26, 2011
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment