24 lines
792 B
Plaintext
24 lines
792 B
Plaintext
.card
|
|
.card-body
|
|
%h2= t(".heading")
|
|
= t(".body_html")
|
|
|
|
- if current_user.can_export?
|
|
%form{ action: settings_export_path, method: :post }
|
|
%p.text-center
|
|
%button.btn.btn-lg.btn-primary#export-btn{ type: :submit }= t(".export")
|
|
= hidden_field_tag :authenticity_token, form_authenticity_token
|
|
- else
|
|
%p.text-center
|
|
%button.btn.btn-lg.btn-primary.disabled{ disabled: :disabled }= t(".export")
|
|
%p
|
|
- if current_user.export_url.nil?
|
|
= t(".export_url.none")
|
|
- else
|
|
= t(".export_url.present", time: current_user.export_created_at)
|
|
%a{ href: current_user.export_url }
|
|
= File.basename current_user.export_url
|
|
|
|
- provide(:title, generate_title(t(".title")))
|
|
- parent_layout "user/settings"
|