Skip to content

Commit

Permalink
fix date display
Browse files Browse the repository at this point in the history
  • Loading branch information
schacon committed Jul 29, 2009
1 parent 9fe2be5 commit 36d6653
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion views/project.erb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<table>
<% @entry.scores.reverse.each do |s| %>
<tr>
<td><%= s.entered.strftime("%Y-%m-%d") rescue nil %></td>
<td><%= s.push.entered.strftime("%Y-%m-%d") rescue nil %></td>
<td><strong><%= s.score %></strong></td>
<td><%= ((s.score.to_f / 4788.0) * 100).to_s[0, 5] %>%</td>
<td><%= s.push.ref rescue nil %></td>
Expand Down

0 comments on commit 36d6653

Please sign in to comment.