Skip to content

Instantly share code, notes, and snippets.

View KelvinMutuma's full-sized avatar

Kelvin Mutuma KelvinMutuma

View GitHub Profile
show do
panel "Participated Surveys" do
farmer_id = resource.id
table_for resource.forms do
column("Name") {|form| link_to(form.name, admin_form_path(form))}
column("Answers") { |form| link_to("answers", farmer_form_question_answers_admin_form_path(form, farmer_id: farmer_id))}
column :created_at
end