2017-08-17 22:00:37 +05:30
|
|
|
- return unless current_user
|
|
|
|
|
2016-06-16 23:09:34 +05:30
|
|
|
.hidden-xs
|
2016-09-29 09:46:39 +05:30
|
|
|
- if can?(current_user, :update_project_snippet, @snippet)
|
2017-09-10 17:25:29 +05:30
|
|
|
= link_to edit_project_snippet_path(@project, @snippet), class: "btn btn-grouped" do
|
2016-06-16 23:09:34 +05:30
|
|
|
Edit
|
2017-08-17 22:00:37 +05:30
|
|
|
- if can?(current_user, :update_project_snippet, @snippet)
|
2017-09-10 17:25:29 +05:30
|
|
|
= link_to project_snippet_path(@project, @snippet), method: :delete, data: { confirm: "Are you sure?" }, class: "btn btn-grouped btn-inverted btn-remove", title: 'Delete Snippet' do
|
2017-08-17 22:00:37 +05:30
|
|
|
Delete
|
|
|
|
- if can?(current_user, :create_project_snippet, @project)
|
2017-09-10 17:25:29 +05:30
|
|
|
= link_to new_project_snippet_path(@project), class: 'btn btn-grouped btn-inverted btn-create', title: "New snippet" do
|
2017-08-17 22:00:37 +05:30
|
|
|
New snippet
|
|
|
|
- if @snippet.submittable_as_spam_by?(current_user)
|
2017-09-10 17:25:29 +05:30
|
|
|
= link_to 'Submit as spam', mark_as_spam_project_snippet_path(@project, @snippet), method: :post, class: 'btn btn-grouped btn-spam', title: 'Submit as spam'
|
2016-08-24 12:49:21 +05:30
|
|
|
- if can?(current_user, :create_project_snippet, @project) || can?(current_user, :update_project_snippet, @snippet)
|
|
|
|
.visible-xs-block.dropdown
|
|
|
|
%button.btn.btn-default.btn-block.append-bottom-0.prepend-top-5{ data: { toggle: "dropdown" } }
|
|
|
|
Options
|
2016-11-03 12:29:30 +05:30
|
|
|
= icon('caret-down')
|
2016-08-24 12:49:21 +05:30
|
|
|
.dropdown-menu.dropdown-menu-full-width
|
|
|
|
%ul
|
|
|
|
- if can?(current_user, :create_project_snippet, @project)
|
|
|
|
%li
|
2017-09-10 17:25:29 +05:30
|
|
|
= link_to new_project_snippet_path(@project), title: "New snippet" do
|
2016-11-03 12:29:30 +05:30
|
|
|
New snippet
|
2016-08-24 12:49:21 +05:30
|
|
|
- if can?(current_user, :update_project_snippet, @snippet)
|
|
|
|
%li
|
2017-09-10 17:25:29 +05:30
|
|
|
= link_to project_snippet_path(@project, @snippet), method: :delete, data: { confirm: "Are you sure?" }, title: 'Delete Snippet' do
|
2016-08-24 12:49:21 +05:30
|
|
|
Delete
|
2016-09-29 09:46:39 +05:30
|
|
|
- if can?(current_user, :update_project_snippet, @snippet)
|
|
|
|
%li
|
2017-09-10 17:25:29 +05:30
|
|
|
= link_to edit_project_snippet_path(@project, @snippet) do
|
2016-09-29 09:46:39 +05:30
|
|
|
Edit
|
2017-08-17 22:00:37 +05:30
|
|
|
- if @snippet.submittable_as_spam_by?(current_user)
|
|
|
|
%li
|
2017-09-10 17:25:29 +05:30
|
|
|
= link_to 'Submit as spam', mark_as_spam_project_snippet_path(@project, @snippet), method: :post
|