summaryrefslogtreecommitdiff
path: root/app/views/shared/doorkeeper/applications/_delete_form.html.haml
blob: 7cce0652f6f4ba3241a58878cf7c2580ec898538 (plain)
1
2
3
4
5
6
7
8
9
10
- submit_btn_css ||= 'gl-button btn btn-danger btn-sm'
= form_tag path do
  %input{ :name => "_method", :type => "hidden", :value => "delete" }
  - if defined? small
    = button_tag type: "submit", class: "gl-button btn btn-danger btn-icon", data: { confirm: _("Are you sure?"), confirm_btn_variant: "danger" } do
      %span.sr-only
        = _('Destroy')
      = sprite_icon('remove')
  - else
    = submit_tag _('Destroy'), data: { confirm: _("Are you sure?"), confirm_btn_variant: "danger" }, aria: { label: _('Destroy') }, class: submit_btn_css