gitlab-org--gitlab-foss/app/views/shared/_issues.html.haml
Henry Smith 4b91ffca3e More specific empty state message wording
I've changed all the instances of "Nothing to show here" to specifically mention
the name of the entity of which there are none to show. This makes for a
slightly smoother reading experience.
2013-08-15 18:31:16 +01:00

15 lines
457 B
Text

- if @issues.any?
- @issues.group_by(&:project).each do |group|
.ui-box.small-box
- project = group[0]
.title
= link_to_project project
= link_to 'show all', project_issues_path(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
%p.nothing_here_message No issues to show