gitlabhq/app/views/dashboard/issues.html.haml

20 lines
491 B
Plaintext
Raw Normal View History

%h3.page_title
2012-01-27 23:51:02 +01:00
Issues
%small (assigned to you)
%small.right #{@issues.total_count} issues
2012-01-27 23:51:02 +01:00
%br
2012-06-21 07:29:53 +02:00
.clearfix
- 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 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})
%hr
= paginate @issues, :theme => "gitlab"
- else
%h3.nothing_here_message Nothing to show here