C
C
connor742015-08-12 08:58:12
Django
connor74, 2015-08-12 08:58:12

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

4 answer(s)
U
un1t, 2015-08-12
@un1t

In some cases it is enough, in some it is not. It depends on the tasks.

S
Stanislav Fateev, 2015-08-12
@svfat

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'.

V
Vadim Shandrinov, 2015-08-12
@suguby

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.

R
Ruslan Luxurious, 2015-08-14
@oshikuru

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 question

Ask a Question

731 491 924 answers to any question