From 297bacf339843b6485ced6c639336e7454050b6f Mon Sep 17 00:00:00 2001 From: Karina Kwiatek Date: Tue, 28 Jun 2022 22:50:58 +0200 Subject: [PATCH] Remove old profile settings view --- app/views/settings/_profile.haml | 52 -------------------------------- 1 file changed, 52 deletions(-) delete mode 100644 app/views/settings/_profile.haml diff --git a/app/views/settings/_profile.haml b/app/views/settings/_profile.haml deleted file mode 100644 index 0b7474d9..00000000 --- a/app/views/settings/_profile.haml +++ /dev/null @@ -1,52 +0,0 @@ -.card - .card-body - = bootstrap_form_for(current_user, url: { action: :edit }, html: { multipart: true }, method: :patch) do |f| - - .media#profile-picture-media - .pull-left - %img.avatar-lg.mr-3{ src: current_user.profile_picture.url(:medium) } - .media-body - = f.file_field :profile_picture, accept: APP_CONFIG[:accepted_image_formats].join(",") - - .row.d-none#profile-picture-crop-controls - .col-sm-10.col-md-8 - %strong= t(".adjust.profile_picture") - %img#profile-picture-cropper{ src: current_user.profile_picture.url(:medium) } - - .row.mb-2#profile-header-media - .col - %img.mw-100.mr-3{ src: current_user.profile_header.url(:mobile) } - .col-xs-12.mt-3.mt-sm-0.pl-3.pr-3 - = f.file_field :profile_header, accept: APP_CONFIG[:accepted_image_formats].join(",") - - .row.d-none#profile-header-crop-controls - .col-sm-10.col-md-8 - %strong= t(".adjust.profile_header") - %img#profile-header-cropper{ src: current_user.profile_header.url(:web) } - - = f.check_box :show_foreign_themes - - - %i[profile_picture_x profile_picture_y profile_picture_w profile_picture_h].each do |attrib| - = f.hidden_field attrib, id: attrib - - - %i[profile_header_x profile_header_y profile_header_w profile_header_h].each do |attrib| - = f.hidden_field attrib, id: attrib - - = f.primary -.card - .card-body - = bootstrap_form_for(current_user.profile, url: { action: :update_profile }, html: { multipart: true }, method: :patch) do |f| - - = f.text_field :display_name - - = f.text_field :motivation_header - - = f.text_field :anon_display_name, placeholder: APP_CONFIG["anonymous_name"] - - = f.text_field :website - - = f.text_field :location - - = f.text_area :description - - = f.primary