sarting to generalize profiles
This commit is contained in:
@ -8,8 +8,6 @@
|
||||
= image_for( member , class: "h-60 w-full object-cover")
|
||||
%h3.pt-5.text-2xl.bg-gray-100.text-black.font-bold.text-center
|
||||
= member.name
|
||||
.p-2.text-xs.bg-gray-50.text-black.font-bold.text-center
|
||||
= stayed member
|
||||
%div.h-full
|
||||
.p-5.text-center
|
||||
.m-2.text-sm.leading-relaxed.line-clamp-3{ prose_classes }
|
||||
|
@ -23,14 +23,14 @@
|
||||
= link_to edit_member_path(@member) do
|
||||
%button.bg-cyan-200.mr-3.inline-block.rounded-lg.px-4.py-3.text-md.font-medium.border.border-gray-400
|
||||
Edit
|
||||
- if @member.teacher
|
||||
= link_to edit_teacher_path(@member.teacher) do
|
||||
- if @member.profile
|
||||
= link_to edit_profile_path(@member.profile) do
|
||||
%button.bg-cyan-200.mr-3.inline-block.rounded-lg.px-4.py-3.text-md.font-medium.border.border-gray-400
|
||||
Edit teacher profile
|
||||
Edit profile profile
|
||||
-else
|
||||
= link_to new_teacher_path do
|
||||
= link_to new_profile_path do
|
||||
%button.bg-cyan-200.mr-3.inline-block.rounded-lg.px-4.py-3.text-md.font-medium.border.border-gray-400
|
||||
Create teacher profile
|
||||
Create profile profile
|
||||
|
||||
.grid.grid-cols-3.gap-4
|
||||
-@member.entities.each do |entity|
|
||||
|
@ -1,13 +1,13 @@
|
||||
= simple_form_for @teacher do |f|
|
||||
= simple_form_for @profile do |f|
|
||||
= f.error_notification
|
||||
|
||||
= f.input :name
|
||||
= f.input :bio
|
||||
= f.input :picture , as: :file , label: (@teacher.picture.blank? ? "Add picture" : "Change picture (optional)")
|
||||
= f.input :picture , as: :file , label: (@profile.picture.blank? ? "Add picture" : "Change picture (optional)")
|
||||
|
||||
.flex.justify-between.mt-4
|
||||
%button.bg-cyan-200{class: button_classes}
|
||||
= f.submit 'Save'
|
||||
|
||||
%button.bg-cyan-200{class: button_classes}
|
||||
= link_to 'Cancel', teachers_path
|
||||
= link_to 'Cancel', profiles_path
|
@ -1,4 +1,4 @@
|
||||
.flex.justify-center
|
||||
.column
|
||||
.text-xl.m-4 Edit your teacher profile
|
||||
.text-xl.m-4 Edit your profile profile
|
||||
= render 'form'
|
@ -1,14 +1,14 @@
|
||||
= paginate @teachers
|
||||
= paginate @profiles
|
||||
.flex.justify-center
|
||||
|
||||
.grid.grid-cols-4
|
||||
- @teachers.each do |teacher|
|
||||
- @profiles.each do |profile|
|
||||
.fex.flex-col.overflow-hidden.rounded-lg.border.border-gray-100.shadow-sm.m-10
|
||||
=link_to teacher do
|
||||
= image_for( teacher , class: "h-60 w-full object-cover")
|
||||
=link_to profile do
|
||||
= image_for( profile , class: "h-60 w-full object-cover")
|
||||
%h3.py-5.text-2xl.bg-gray-100.text-black.font-bold.text-center
|
||||
= teacher.name
|
||||
= profile.name
|
||||
%div.h-full
|
||||
.p-5.text-center
|
||||
.m-2.text-sm.leading-relaxed.line-clamp-3{ prose_classes }
|
||||
= shorten markdown(teacher.bio)
|
||||
= shorten markdown(profile.bio)
|
@ -1,4 +1,4 @@
|
||||
.flex.justify-center
|
||||
.column
|
||||
.text-xl.m-4 Create your teacher profile
|
||||
.text-xl.m-4 Create your profile profile
|
||||
= render 'form'
|
@ -1,10 +1,10 @@
|
||||
.px-4.py-16.mx-auto.sm:max-w-xl.md:max-w-full.lg:max-w-screen-xl.md:px-24.lg:px-8.lg:py-20
|
||||
.flex.flex-col.max-w-screen-lg.overflow-hidden.bg-white.border.rounded.shadow-sm.lg:flex-row.sm:mx-auto
|
||||
.relative{:class => "lg:w-1/2"}
|
||||
-if @teacher.picture_url
|
||||
= image_tag @teacher.picture_url, class: "object-cover w-full lg:absolute h-80 lg:h-full"
|
||||
-if @profile.picture_url
|
||||
= image_tag @profile.picture_url, class: "object-cover w-full lg:absolute h-80 lg:h-full"
|
||||
.flex.flex-col.justify-center.p-8.lg:p-16.lg:pl-10{:class => "lg:w-1/2"}
|
||||
%h5.mb-3.text-3xl.font-extrabold.leading-none.sm:text-4xl
|
||||
= @teacher.name
|
||||
= @profile.name
|
||||
.mb-8.text-gray-800
|
||||
.prose= markdown(@teacher.bio)
|
||||
.prose= markdown(@profile.bio)
|
Reference in New Issue
Block a user