New Features
- Added support for group questions in Reservation questions.
- Added option to send an email to all registered users.
- Rest API updates:
- Added Excel export.
To enable it, it must be added to theDEFAULT_RENDERER_CLASSESof theREST_FRAMEWORKdictionary insettings.py, like the following:
'DEFAULT_RENDERER_CLASSES': ['rest_framework.renderers.JSONRenderer', 'rest_framework.renderers.BrowsableAPIRenderer', 'drf_renderer_xlsx.renderers.XLSXRenderer'], - Added billing to the browsable API page.
- Added link to the API in the Administration menu. Only visible for admins.
- Added Excel export.
Bug fix
- Fixed an issue where sorting tools by name in the detailed admin section would break
- Fixed multi email field validation issue where rendering would break when there was a validation issue.
- Fixed multiple issues with reservation calendar invite in Outlook where the organizer cannot be the attendee. The organizer can now be set in settings.py using
RESERVATION_ORGANIZER_EMAILandRESERVATION_ORGANIZERfor the email and the name of the organizer, respectively. see the settings page for details - Made
Customizationspage only accessible to admins
Library updates
- Updated drf-flex-fields to 0.9.3
- Updated Pillow to 8.3.2