diff --git a/app/controllers/personal_volunteers_controller.rb b/app/controllers/personal_volunteers_controller.rb index 19d82c7..efb9625 100644 --- a/app/controllers/personal_volunteers_controller.rb +++ b/app/controllers/personal_volunteers_controller.rb @@ -12,7 +12,9 @@ class PersonalVolunteersController < ApplicationController { 'attendee' => ("" + member.name + ""), 'volunteer_name' => volunteer_service.volunteer_name, + 'volunteer_type' => volunteer_service.volunteer_type, 'volunteer_organizer' => volunteer_service.volunteer_organizer, + 'participation_status' => volunteer_service.participation_status, 'volunteer_area' => volunteer_service.volunteer_area, 'volunteer_start_date' => volunteer_service.volunteer_start_date, 'volunteer_end_date' => volunteer_service.volunteer_end_date, @@ -28,7 +30,9 @@ class PersonalVolunteersController < ApplicationController 'extras' => { 'widget-title' => t('module_name.personal_volunteer'), 'volunteer_name' => t('personal_volunteer.volunteer_name'), + 'volunteer_type' => t('personal_volunteer.volunteer_type'), 'volunteer_organizer' => t('personal_volunteer.volunteer_organizer'), + 'participation_status' => t('personal_volunteer.participation_status'), 'volunteer_area' => t('personal_volunteer.volunteer_area'), 'volunteer_start_date' => t('personal_volunteer.volunteer_start_date'), 'volunteer_end_date' => t('personal_volunteer.volunteer_end_date'),