debian-mirror-gitlab/app/views/projects/snippets/_actions.html.haml

37 lines
2 KiB
Text
Raw Normal View History

2017-08-17 22:00:37 +05:30
- return unless current_user
2018-11-08 19:23:39 +05:30
.d-none.d-sm-block
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
2018-11-08 19:23:39 +05:30
= _('Edit')
2017-08-17 22:00:37 +05:30
- if can?(current_user, :update_project_snippet, @snippet)
2018-11-08 19:23:39 +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
= _('Delete')
2017-08-17 22:00:37 +05:30
- if can?(current_user, :create_project_snippet, @project)
2018-12-05 23:21:45 +05:30
= link_to new_project_snippet_path(@project), class: 'btn btn-grouped btn-inverted btn-success', title: _("New snippet") do
2018-11-08 19:23:39 +05:30
= _('New snippet')
2017-08-17 22:00:37 +05:30
- if @snippet.submittable_as_spam_by?(current_user)
2018-11-08 19:23:39 +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)
2018-11-08 19:23:39 +05:30
.d-block.d-sm-none.dropdown
2016-08-24 12:49:21 +05:30
%button.btn.btn-default.btn-block.append-bottom-0.prepend-top-5{ data: { toggle: "dropdown" } }
2018-11-08 19:23:39 +05:30
= _('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
2018-11-08 19:23:39 +05:30
= link_to new_project_snippet_path(@project), title: _("New snippet") do
= _('New snippet')
2016-08-24 12:49:21 +05:30
- if can?(current_user, :update_project_snippet, @snippet)
%li
2018-11-08 19:23:39 +05:30
= link_to project_snippet_path(@project, @snippet), method: :delete, data: { confirm: _("Are you sure?") }, title: _('Delete Snippet') do
= _('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
2018-11-08 19:23:39 +05:30
= _('Edit')
2017-08-17 22:00:37 +05:30
- if @snippet.submittable_as_spam_by?(current_user)
%li
2018-11-08 19:23:39 +05:30
= link_to _('Submit as spam'), mark_as_spam_project_snippet_path(@project, @snippet), method: :post