gitlab-org--gitlab-foss/app/views/shared/snippets/_list.html.haml

12 lines
418 B
Plaintext
Raw Normal View History

2019-02-22 12:12:36 +00:00
- remote = local_assigns.fetch(:remote, false)
- link_project = local_assigns.fetch(:link_project, false)
- if @snippets.to_a.empty?
.nothing-here-block= s_("SnippetsEmptyState|No snippets found")
- else
2019-02-22 12:12:36 +00:00
.snippets-list-holder
%ul.content-list
= render partial: 'shared/snippets/snippet', collection: @snippets, locals: { link_project: link_project }
= paginate_collection @snippets, remote: remote