feat(MembersOverview): add season filter and enhance age group selection
All checks were successful
Deploy tt-tagebuch / deploy (push) Successful in 37s
All checks were successful
Deploy tt-tagebuch / deploy (push) Successful in 37s
- Introduced a new season filter dropdown in the MembersOverviewSection for selecting the season start year. - Enhanced age group selection by organizing options into groups for better clarity and added new age categories. - Updated localization files to include new terms related to the season filter and age classifications across multiple languages. - Improved the overall layout and styling of the filter components for a better user experience.
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
-- Jugend-Freigaben (Schema wie backend/models/Member.js)
|
||||
-- Fehlende Spalten verursachen SequelizeDatabaseError ER_BAD_FIELD_ERROR bei getClubMembers.
|
||||
|
||||
ALTER TABLE `member`
|
||||
ADD COLUMN `adult_release_approved` TINYINT(1) NOT NULL DEFAULT 0
|
||||
COMMENT 'Jugendspieler mit Freigabe fuer Erwachsene'
|
||||
AFTER `member_form_handed_over`,
|
||||
ADD COLUMN `adult_reserve_approved` TINYINT(1) NOT NULL DEFAULT 0
|
||||
COMMENT 'Jugendspieler als Ersatz bei Erwachsenen zugelassen'
|
||||
AFTER `adult_release_approved`;
|
||||
Reference in New Issue
Block a user