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

24 lines
598 B
Plaintext
Raw Normal View History

2013-01-19 18:32:09 +01:00
%h3.page_title
Issues
%small (in Team projects assigned to Team members)
2013-01-30 15:40:43 +01:00
%small.pull-right #{@issues.total_count} issues
2013-01-19 18:32:09 +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.title
= link_to_project @project
%ul.well-list.issues_table
- group[1].each do |issue|
2013-02-25 21:56:10 +01:00
= render issue
2013-01-19 18:32:09 +01:00
%hr
= paginate @issues, theme: "gitlab"
- else
%p.nothing_here_message Nothing to show here