i would like to ask if there's a way to make a django app with 2 roles (me as a django admin that can use /admin panel to manage the website) and customers (who have access to the app but everyone has it's own data separated) but without using subdomains or subfolders ?
thank you so much.
is_staff=True
can access the admin site. Why do you think you'd need subdomains or folders? is_staff=False
on your customers' User objects and then they can't access the admin site.