Answer the question
In order to leave comments, you need to log in
Who organizes the admin panel in Django?
Good afternoon!
Share your experience, please. The question arose of the following plan: is it necessary to create separate site administration tools for the user, i.e. with separate View and Forms or is the standard Django admin panel enough?
Who does what in their projects?
Answer the question
In order to leave comments, you need to log in
If you need a simplified admin interface, or vice versa, a much more complex one, then it's better to write it yourself.
And so, the Django admin panel has a fairly simple code and is easily configured - moreover, on some simple internal projects for a limited range of use, it is quite possible to use it as the only frontend. I wrote a kind of mini-ERP, in urls.py there were only 'admin.urls'.
Of course, there is not enough data to answer. What kind of site, what user roles, what actions for roles?
From experience, the django admin is mainly for the developer (for you), in order to quickly create / edit something in the database, the users in it get confused when there are non-obvious connections between the entities of the database.
It attracts everyone at first - three lines and it works - but it's difficult to expand / cut, it's better to make the necessary forms for different user roles.
I use the admin panel only for development and simple tasks.
Complex things in it are quite difficult to implement.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question