Commit 4e2b9d70 authored by Berna Castro's avatar Berna Castro Committed by Oswaldo Ferreira

Don't group projects on dashboard#issues

parent d2a2ba93
- if @issues.to_a.any?
- @issues.group_by(&:project).each do |group|
.panel.panel-default.panel-small
- project = group[0]
.panel-heading
= link_to project.name_with_namespace, namespace_project_issues_path(project.namespace, project)
- if can?(current_user, :create_issue, project)
.pull-right
= link_to 'New issue', new_namespace_project_issue_path(project.namespace, project)
.panel.panel-default.panel-small
%ul.content-list.issues-list
- @issues.each do |issue|
- project = issue.project
%ul.content-list.issues-list
- group[1].each do |issue|
= render 'projects/issues/issue', issue: issue
= render 'projects/issues/issue', issue: issue
= paginate @issues, theme: "gitlab"
- else
= render 'shared/empty_states/issues'
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment