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-06-30 23:35:24 +02:00
|
|
|
%br
|
2012-06-21 07:29:53 +02:00
|
|
|
.clearfix
|
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
|
2012-06-26 22:34:23 +02:00
|
|
|
%ul.unstyled.issues_table
|
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
|