I have created a website in Django that contains product details and captions.
Now, I want to create a dynamic admin panel that performs the following tasks without using code (because the client has no idea about coding):
( just like we are changing the our images on social media account without using any coding like using prebuilded system)
So here is what to do as the next step in processing this: pls guide me
i have tried models but i don't understand it very well
For this propose you can use this examples
Profile picture: add a new field with profile name and field type Image to your User model or Profile model and admin can easily add profile
for dynamic content on frontend: create a model Content and add a field Text with RichTextField Field from ckEditor module that crested for this propose
all of them is a minimum example and show you how we can hide details of code under abstract things