Retrospring/app/views/modal/_ban.html.haml

35 lines
1.7 KiB
Plaintext
Raw Normal View History

- current_ban = user.bans.current.first
2020-05-10 03:53:30 -07:00
.modal.fade#modal-ban{ aria: { hidden: true, labelledby: 'modal-ban-label' }, role: :dialog, tabindex: -1 }
.modal-dialog
2021-12-29 15:20:09 -08:00
.modal-content#ban-control-super
.modal-header
2020-05-10 03:53:30 -07:00
%h5.modal-title#modal-ban-label
2022-07-02 02:34:46 -07:00
= t '.title'
2020-05-10 03:53:30 -07:00
%button.close{ data: { dismiss: :modal }, type: :button }
%span{ aria: { hidden: true } } ×
2022-07-30 09:50:46 -07:00
%span.sr-only= t("voc.close")
2020-05-10 13:27:39 -07:00
= bootstrap_form_tag(url: '/mod/ban', html: { method: :post, novalidate: :novalidate }) do |f|
2020-05-10 03:53:30 -07:00
= f.hidden_field :user, value: user.screen_name
- if user.bans.count > 1
%div{ role: :tabpanel }
%ul.nav.nav-tabs.mt-1{ role: :tablist }
%li.nav-item{ role: 'presentation' }
%a.nav-link.active{ href: '#ban-controls-tab', aria: { controls: 'ban-controls-tab' }, data: { toggle: :tab }, role: :tab }
= t '.tabs.controls'
%li.nav-item{ role: 'presentation' }
%a.nav-link{ href: '#ban-history', aria: { controls: 'ban-history' }, data: { toggle: :tab }, role: :tab }
= t '.tabs.history'
.tab-content
.tab-pane.active{ role: :tabpanel, id: 'ban-controls-tab' }
- if current_ban.nil?
2022-07-02 03:03:07 -07:00
= render 'modal/ban/controls', f: f, user: user
- else
= render 'modal/ban/unban', f: f, user: user, current_ban: current_ban
.tab-pane{ role: :tabpanel, id: 'ban-history' }
= render 'modal/ban/history', user: user
- else
- if current_ban.nil?
= render 'modal/ban/controls', f: f, user: user
- else
= render 'modal/ban/unban', f: f, user: user, current_ban: current_ban