retrospring/app/views/modal/ban/_unban.haml
2022-07-02 17:08:44 +02:00

11 lines
No EOL
532 B
Text

= f.hidden_field :ban, value: '0'
.modal-body
- if current_ban.expires_at.nil?
= t '.banned_permanently_html', reason: current_ban.reason
- else
= t '.banned_temporarily_html', reason: current_ban.reason, until: current_ban.expires_at.strftime('%Y-%m-%d %H:%M:%S')
- if current_ban.banned_by.present?
%br
= t '.banned_by_html', user: current_ban.banned_by.screen_name, on: current_ban.created_at.strftime('%Y-%m-%d %H:%M:%S')
.modal-footer
= f.submit t '.unban', class: 'btn btn-primary', name: 'hammer-time'