https://github.com/genndy007/event_management_restapi
Django-based REST API for Event Management.
https://github.com/genndy007/event_management_restapi
Last synced: 2 months ago
JSON representation
Django-based REST API for Event Management.
- Host: GitHub
- URL: https://github.com/genndy007/event_management_restapi
- Owner: genndy007
- Created: 2024-05-11T19:11:14.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-05-11T19:26:34.000Z (over 1 year ago)
- Last Synced: 2025-03-21T10:13:54.850Z (7 months ago)
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Event Management REST API
Django-based REST API that manages events (like conferences, meetups, etc.).
The application will allow users to create, view, update, and delete events.
It should also handle user registrations for these events.Requirements:
- Design an Event model with fields such as title, description, date, location,
and organizer.
- Implement CRUD (Create, Read, Update, Delete) operations for the Event
model.
- Basic User Registration and Authentication.
- Event RegistrationBonus:
- Implement an advanced feature like event search or filtering.
- Add a feature for sending email notifications to users upon event registration.