Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialSimon Amz
4,606 PointsHow to distinguish apps in Django?
Hi there,
I'm trying to begin a new little project in Django, and I'm wondering how do I build the project and their apps.
Indeed, to be simple, I want to reproduce a little interface where two kind of users could authenticate (doctors and patients). Both are some different attributes, and I wanted to know if there was an interest to split the type of user in app.
Project name: DoctorProject app1: Patient App app2: Practitioner App
or
Project name: DoctorProject app1: backoffice App (with the both user types)
In a general manner, I wanted to understand the way we need to create apps with coherence.
Thanks for your help
1 Answer
Henrik Christensen
Python Web Development Techdegree Student 38,322 Pointswhy not just create a users app and then create a model for each user type?