2012-06-30 23:35:24 +02:00
|
|
|
%h3.page_title
|
2012-01-27 23:51:02 +01:00
|
|
|
Issues
|
2012-03-26 11:11:02 +02:00
|
|
|
%small (assigned to you)
|
2012-04-24 20:49:34 +02:00
|
|
|
%small.right #{@issues.total_count} issues
|
2012-01-27 23:51:02 +01:00
|
|
|
|
2012-11-21 06:24:05 +01:00
|
|
|
%hr
|
|
|
|
|
|
|
|
.row
|
|
|
|
.span3
|
|
|
|
= render 'filter', entity: 'issue'
|
|
|
|
.span9
|
|
|
|
- if @issues.any?
|
|
|
|
- @issues.group_by(&:project).each do |group|
|
|
|
|
%div.ui-box
|
2013-01-14 09:09:01 +01:00
|
|
|
- project = group[0]
|
2013-01-04 23:35:38 +01:00
|
|
|
%h5.title
|
2013-01-14 09:09:01 +01:00
|
|
|
= link_to_project project
|
2012-12-18 04:14:05 +01:00
|
|
|
%ul.well-list.issues_table
|
2012-11-21 06:24:05 +01:00
|
|
|
- group[1].each do |issue|
|
|
|
|
= render(partial: 'issues/show', locals: {issue: issue})
|
|
|
|
%hr
|
|
|
|
= paginate @issues, theme: "gitlab"
|
|
|
|
- else
|
|
|
|
%p.nothing_here_message Nothing to show here
|