2012-01-27 23:51:02 +01:00
|
|
|
%h3
|
|
|
|
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-02-28 21:59:36 +01:00
|
|
|
%br
|
2012-04-24 20:49:34 +02:00
|
|
|
- if @issues.any?
|
|
|
|
- @issues.group_by(&:project).each do |group|
|
|
|
|
%div.ui-box
|
|
|
|
- project = group[0]
|
|
|
|
%h5= project.name
|
|
|
|
%ul.unstyled
|
2012-04-07 23:18:32 +02:00
|
|
|
- group[1].each do |issue|
|
|
|
|
= render(:partial => 'issues/show', :locals => {:issue => issue})
|
2012-04-24 20:49:34 +02:00
|
|
|
%hr
|
|
|
|
= paginate @issues, :theme => "gitlab"
|
|
|
|
- else
|
2012-06-11 07:52:44 +02:00
|
|
|
%h3.nothing_here_message Nothing to show here
|