numbering authors in best_authors page

This commit is contained in:
Tomasz Gieniusz 2012-10-23 20:13:36 +02:00
parent 8d3ff86ace
commit 8f62957ae5
1 changed files with 2 additions and 0 deletions

View File

@ -19,6 +19,7 @@
- if page == :best_authors
%table{:class => "table table-bordered table-condensed table-hover"}
%tr
%th #
%th= :author.t
%th= :commits.t
%th= :insertions.t
@ -29,6 +30,7 @@
- sorted_authors = repo.authors.sort_by { |a| -a.commits.size}
- sorted_authors.each_with_index do |author, i|
%tr
%th= i+1
%th= author.name
%td= author.commits.size
%td= author.insertions