summaryrefslogtreecommitdiff
path: root/app/views/projects/commits/_commits.html.haml
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-12-30 23:55:15 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-12-30 23:55:15 +0200
commit1b1a408a717b6ad1ca3f15bf1b13b8251a5a33e4 (patch)
tree887868271938d860a4bb8e727262735f558ec7d8 /app/views/projects/commits/_commits.html.haml
parent447b46ca186d3b1fc14898bbd932485569d71c68 (diff)
downloadgitlab-ce-1b1a408a717b6ad1ca3f15bf1b13b8251a5a33e4.tar.gz
Convert span into col-md
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/views/projects/commits/_commits.html.haml')
-rw-r--r--app/views/projects/commits/_commits.html.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/projects/commits/_commits.html.haml b/app/views/projects/commits/_commits.html.haml
index b6404778073..e3411b62eb6 100644
--- a/app/views/projects/commits/_commits.html.haml
+++ b/app/views/projects/commits/_commits.html.haml
@@ -1,11 +1,11 @@
- @commits.group_by { |c| c.committed_date.to_date }.sort.reverse.each do |day, commits|
.row.commits-row
- .span2
+ .col-md-2
%h4
%i.icon-calendar
%span= day.stamp("28 Aug, 2010")
%p= pluralize(commits.count, 'commit')
- .span10
+ .col-md-10
%ul.well-list
= render commits, project: @project
%hr.lists-separator