2016-09-23 13:28:14 -04:00
|
|
|
- remote = local_assigns.fetch(:remote, false)
|
2016-12-09 11:54:13 -05:00
|
|
|
- link_project = local_assigns.fetch(:link_project, false)
|
2016-09-23 13:28:14 -04:00
|
|
|
|
2016-09-02 07:29:05 -04:00
|
|
|
.snippets-list-holder
|
|
|
|
%ul.content-list
|
2016-12-09 11:54:13 -05:00
|
|
|
= render partial: 'shared/snippets/snippet', collection: @snippets, locals: { link_project: link_project }
|
2016-09-02 07:29:05 -04:00
|
|
|
- if @snippets.empty?
|
|
|
|
%li
|
|
|
|
.nothing-here-block Nothing here.
|
2013-03-24 18:18:39 -04:00
|
|
|
|
2016-09-23 13:28:14 -04:00
|
|
|
= paginate @snippets, theme: 'gitlab', remote: remote
|
2016-09-02 07:29:05 -04:00
|
|
|
|
|
|
|
:javascript
|
|
|
|
gl.SnippetsList();
|