gitlab-org--gitlab-foss/app/views/dashboard/issues.html.haml

20 lines
489 B
Text
Raw Normal View History

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