2012-01-27 23:51:02 +01:00
|
|
|
%h3
|
|
|
|
Issues
|
2012-03-26 11:11:02 +02:00
|
|
|
%small (assigned to you)
|
2012-01-27 23:51:02 +01:00
|
|
|
|
2012-02-28 21:59:36 +01:00
|
|
|
%br
|
2012-04-07 23:18:32 +02:00
|
|
|
%div#issues-table-holder.ui-box
|
|
|
|
%title
|
|
|
|
%ul#issues-table.unstyled
|
|
|
|
- if @issues.any?
|
|
|
|
- @issues.group_by(&:project).each do |group|
|
|
|
|
%li.wll.smoke
|
|
|
|
- project = group[0]
|
|
|
|
= project.name
|
|
|
|
- group[1].each do |issue|
|
|
|
|
= render(:partial => 'issues/show', :locals => {:issue => issue})
|
|
|
|
%li.bottom
|
|
|
|
.row
|
2012-04-10 20:39:04 +02:00
|
|
|
.span7= paginate @issues, :theme => "gitlab"
|
2012-04-07 23:18:32 +02:00
|
|
|
.span4.right
|
|
|
|
%span.cgray.right #{@issues.total_count} issues
|
|
|
|
|
|
|
|
- else
|
|
|
|
%li
|
|
|
|
%p.padded Nothing to show here
|