This is the Registration backend used in TEDxPESITBSC V3. It's a simple Django app that imports attendee details from a CSV and helps manage registrations, process lunch queues.
Make migrations:
$ python manage.py makemigrationsMigrate:
$ python manage.py migrateRun the app locally on localhost:8000:
$ python manage.py runserverTo login as a member of the Registration team and be allowed to access other pages.
To register an attendee by looking them up using their ticket id or mobile number and assigning them a new barcode.
To process lunch request for an attendee using their newly allocated barcode.
To import latest attendee details from the CSV and add only new entries.
- Add a dashboard page with stats of how many attendees have registered, had lunch, etc.