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 the `DEFAULT_RENDERER_CLASSES` of the `REST_FRAMEWORK` dictionary in `settings.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.
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_EMAIL` and `RESERVATION_ORGANIZER` for the email and the name of the organizer, respectively. see the [settings](https://github.com/usnistgov/NEMO/wiki/Settings) page for details
* Made `Customizations` page only accessible to admins
Library updates
* Updated drf-flex-fields to 0.9.3
* Updated Pillow to 8.3.2