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

24 lines
591 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
2012-11-21 06:24:05 +01:00
%hr
.row
.span3
= render 'filter', entity: 'issue'
.span9
- if @issues.any?
- @issues.group_by(&:project).each do |group|
%div.ui-box
- @project = group[0]
%h5= link_to_project @project
%ul.well-list.issues_table
2012-11-21 06:24:05 +01:00
- group[1].each do |issue|
= render(partial: 'issues/show', locals: {issue: issue})
%hr
= paginate @issues, theme: "gitlab"
- else
%p.nothing_here_message Nothing to show here