2012-07-01 00:35:24 +03:00
|
|
|
%h3.page_title
|
2012-01-28 00:51:02 +02:00
|
|
|
Issues
|
2012-03-26 12:11:02 +03:00
|
|
|
%small (assigned to you)
|
2012-04-24 21:49:34 +03:00
|
|
|
%small.right #{@issues.total_count} issues
|
2012-01-28 00:51:02 +02:00
|
|
|
|
2012-07-01 00:35:24 +03:00
|
|
|
%br
|
2012-06-21 08:29:53 +03:00
|
|
|
.clearfix
|
2012-04-24 21:49:34 +03:00
|
|
|
- if @issues.any?
|
|
|
|
- @issues.group_by(&:project).each do |group|
|
|
|
|
%div.ui-box
|
2012-08-06 03:16:06 +02:00
|
|
|
- @project = group[0]
|
|
|
|
%h5= @project.name
|
2012-06-26 23:34:23 +03:00
|
|
|
%ul.unstyled.issues_table
|
2012-04-08 00:18:32 +03:00
|
|
|
- group[1].each do |issue|
|
2012-08-10 18:07:50 -04:00
|
|
|
= render(partial: 'issues/show', locals: {issue: issue})
|
2012-04-24 21:49:34 +03:00
|
|
|
%hr
|
2012-08-10 18:07:50 -04:00
|
|
|
= paginate @issues, theme: "gitlab"
|
2012-04-24 21:49:34 +03:00
|
|
|
- else
|
2012-06-11 08:52:44 +03:00
|
|
|
%h3.nothing_here_message Nothing to show here
|