From 1014b45648a20e36945eefb8bf82ed4b5963719f Mon Sep 17 00:00:00 2001 From: rulingcom Date: Thu, 18 Jun 2026 14:29:50 +0800 Subject: [PATCH] fix template --- app/controllers/personal_volunteers_controller.rb | 4 ++++ 1 file changed, 4 insertions(+) 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'),