_actions.html.haml 554 字节
Newer Older
H
Han Loong Liauw 已提交
1 2
= link_to new_snippet_path, class: 'btn btn-grouped new-snippet-link', title: "New Snippet" do
  = icon('plus')
H
Han Loong Liauw 已提交
3
  New Snippet
H
Han Loong Liauw 已提交
4 5 6 7
- if can?(current_user, :update_personal_snippet, @snippet)
  = link_to edit_snippet_path(@snippet), class: "btn btn-grouped snippable-edit" do
    = icon('pencil-square-o')
    Edit
8 9 10 11
- if can?(current_user, :admin_personal_snippet, @snippet)
  = link_to snippet_path(@snippet), method: :delete, data: { confirm: "Are you sure?" }, class: "btn btn-grouped btn-remove", title: 'Delete Snippet' do
    = icon('trash-o')
    Delete