gitlab-org--gitlab-foss/app/views/shared/_merge_requests.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

13 lines
452 B
Text

- if @merge_requests.any?
- @merge_requests.group_by(&:target_project).each do |group|
.ui-box.small-box
- project = group[0]
.title
= link_to_project project
%ul.well-list.mr-list
- group[1].each do |merge_request|
= render 'projects/merge_requests/merge_request', merge_request: merge_request
= paginate @merge_requests, theme: "gitlab"
- else
%h3.nothing_here_message No merge requests to show