I'm very new to django and python as well. I want to try out a project written in django.
Let say the project have 3 modules
- User
- CRUD
- Forgot password
- login
- Booking
- CRUD
- Search
- Default (basically is for web users to view)
- Home page
- about us
All these have different business logic for the same entity.
Should I create 3 apps for this? If 3 different apps, then the table name is all different as it will automatic add a prefix for table name.
Any suggestion?