17 lines
518 B
Text
17 lines
518 B
Text
- page_title "Snippets"
|
|
= render "header_title"
|
|
|
|
%h3.page-title
|
|
Snippets
|
|
- if can? current_user, :create_project_snippet, @project
|
|
= link_to new_namespace_project_snippet_path(@project.namespace, @project), class: "btn btn-new pull-right", title: "New Snippet" do
|
|
Add new snippet
|
|
|
|
%p.light
|
|
Share code pastes with others out of git repository
|
|
|
|
%ul.bordered-list
|
|
= render partial: "shared/snippets/snippet", collection: @snippets
|
|
- if @snippets.empty?
|
|
%li
|
|
.nothing-here-block Nothing here.
|