Django/React Introduction
- Go through django tutorial
- Django app running on localhost
- Basic bootstrap with django templates on frontend
- Search for an item using 3rd party APIs
- APIs created in DRF
- React frontend connected to APIs
- Deploy apps to server
- email invites
- sign up email verification
Create django application for gift idea sharing between users of the application. User can create group(s), invite other users to their group etc.
Member of the group can share his/hers wishlist for some occasion (Christmas, birthday...), members can see wishlists of other members of the group and they can select present(s) they want to buy. User can not see who is buying him which present.
Present have multiple states - free, reserved, purchased.
- User registration / user login
- List view of all groups
- Group create form view
- Detail of the group (list of wished presents of all members of the group)
- View where user can see all the presents from all groups that he has reserved / purchased.