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

19 lines
474 B
Plaintext
Raw Normal View History

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