Using Django Admin to Solve a User Database

The customer wants a simple intranet application to manage their process. He fulfills the request and wants to track the number of loaded goods per day and related activities.

Since I knew about the excellent Django admin interface, I decided that I could define a “Schema” in models.py and create a Django Admin form.

I did just that, and the result is not bad. I was able to customize the look to suit the taste of the client.

Some questions:

  • Is Django Admin the right choice for such a use case?
  • In the future I will face problems due to the flexibility of the structure?
  • Is there a more efficient structure specifically designed for this use case (general database management for small businesses)? I prefer written in Python, as I can hack it for customization.

Thank!

+3
source share
2 answers

In my personal experience, Django is a good choice for just having a nice database-based frontend.

There is a possibility that you might run into flexibility problems when trying to customize the admin interface ... however, using Django ModelForms and Templates - it's easy to create your own CRUD application - if you can't do what you need the admin interface.

Python, Django Turbogears Pylons (, , ), , , .

, . YMMV.

+2

- , , , , .

: Django?

, django.

+2

Source: https://habr.com/ru/post/1749325/


All Articles