2012-06-30 17:35:24 -04:00
|
|
|
%h3.page_title
|
2012-01-27 17:51:02 -05:00
|
|
|
Issues
|
2012-03-26 05:11:02 -04:00
|
|
|
%small (assigned to you)
|
2013-01-30 09:40:43 -05:00
|
|
|
%small.pull-right #{@issues.total_count} issues
|
2012-01-27 17:51:02 -05:00
|
|
|
|
2012-11-21 00:24:05 -05: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 03:09:01 -05:00
|
|
|
- project = group[0]
|
2013-01-04 17:35:38 -05:00
|
|
|
%h5.title
|
2013-01-14 03:09:01 -05:00
|
|
|
= link_to_project project
|
2013-05-13 14:06:48 -04:00
|
|
|
|
|
|
|
%i.icon-angle-right
|
|
|
|
|
|
|
|
= link_to 'issues', project_issues_path(project)
|
|
|
|
|
2013-04-06 08:10:24 -04:00
|
|
|
%ul.well-list.issues-list
|
2012-11-21 00:24:05 -05:00
|
|
|
- group[1].each do |issue|
|
2013-02-25 15:56:10 -05:00
|
|
|
= render issue
|
2012-11-21 00:24:05 -05:00
|
|
|
%hr
|
|
|
|
= paginate @issues, theme: "gitlab"
|
|
|
|
- else
|
|
|
|
%p.nothing_here_message Nothing to show here
|