Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-08-06 22:22:41 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-08-06 22:22:41 +0400
commit27b7aeddfbd4b927c45d574c2c1cc846abe0cca2 (patch)
treee3585f2831ff973d6090597e82f6da0010b007bf /app/views/shared/_issues.html.haml
parent512cd02335de9de22aab688743a01fa868229f0d (diff)
More compact lists for dashboard issues, mr
Diffstat (limited to 'app/views/shared/_issues.html.haml')
-rw-r--r--app/views/shared/_issues.html.haml7
1 files changed, 2 insertions, 5 deletions
diff --git a/app/views/shared/_issues.html.haml b/app/views/shared/_issues.html.haml
index 33f8f5f4ad1..9fa574cebc0 100644
--- a/app/views/shared/_issues.html.haml
+++ b/app/views/shared/_issues.html.haml
@@ -1,13 +1,10 @@
- if @issues.any?
- @issues.group_by(&:project).each do |group|
- %div.ui-box
+ .ui-box.small-box
- project = group[0]
.title
= link_to_project project
- &nbsp;
- %i.icon-angle-right
- &nbsp;
- = link_to 'issues', project_issues_path(project)
+ = link_to 'show all', project_issues_path(project), class: 'pull-right'
%ul.well-list.issues-list
- group[1].each do |issue|