debian-mirror-gitlab/app/views/shared/snippets/_list.html.haml
2020-04-08 14:13:33 +05:30

12 lines
418 B
Plaintext

- 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
.snippets-list-holder
%ul.content-list
= render partial: 'shared/snippets/snippet', collection: @snippets, locals: { link_project: link_project }
= paginate_collection @snippets, remote: remote