I'm learning Django and I have a problem because I don't know how to put my intention a model.
On my public page I would like to be able to dynamically change the content of my homepage. However, I don't want to create a PageModel - I want only a HomeConfig model with which I can define different texts, images, etc. My problem is that this model could only have one entry but a model isn't made for just one entry.
@Edit: Here is an example to perhaps illustrate the problem a little better. I would like to have the possibility to change the logo, the texts, the buttons, the images... change. But since the design is more complicated than in the example, it doesn't work to create a simple pagemodel with a text editor field. Here is the example