I am looking for a Django example.
I need a models.py, forms.py, views.py, urls.py and the htmls for the following.
The logged user has a automatically created model for him using signals (i have done that).
The model X has 4 fields. The value of those fields is 'default'. The user can check what it is inside their model X and the values of the fields. Additionally, can update them but the user cannot create a new form with new value fields.
In other words, the logged user can input and update 4 fields into the DB. This fields can be later reached and printed.
That's all. I am struggling with this and my brain isn't working at this point. I am newbie.
Thank you.