I'm very new to django so please bear with me. I'm in the process of creating a website and have written the authentication system for it using Django's 'User' model (which I customised). Now I'm wondering how does one use the same 'User' model for making a customised 'profile page' for a user i.e. When a user signs up he's only asked to provide his/her email and password. However, on successful login the user is to be greeted with a sort of a dashboard where he/she can upload media, follow people etc. This will require that the user model be extended with different fields.
Wouldn't this cause a database conflict?
Thanks