2,764
社区成员




ActiveAdmin.register InterviewerProfile, :namespace => :fieldwork do
.........
......
......
show do |profile|
attributes_table do
row :avatar do
image_tag(profile.avatar.url(:thumb))
end
row :fullname
row(:email){ profile.interviewer.email }
row :phonenumber
#是否显示
row :nid
row :student_id
row :account_number
#是否显示
end
......
......
......
end