76aad9b76e
Make the following changes to deal with new behavior in Rails 4.1.2: * Use nested resources to avoid slashes in arguments to path helpers.
15 lines
505 B
Text
15 lines
505 B
Text
- if @issues.any?
|
|
- @issues.group_by(&:project).each do |group|
|
|
.panel.panel-default.panel-small
|
|
- project = group[0]
|
|
.panel-heading
|
|
= link_to_project project
|
|
= link_to 'show all', namespace_project_issues_path(project.namespace, project), class: 'pull-right'
|
|
|
|
%ul.well-list.issues-list
|
|
- group[1].each do |issue|
|
|
= render 'projects/issues/issue', issue: issue
|
|
= paginate @issues, theme: "gitlab"
|
|
- else
|
|
.nothing-here-block No issues to show
|
|
|