Creating an entire web application using django admin

前端 未结 5 611
陌清茗
陌清茗 2020-12-05 15:29

I was thinking that django admin is an utility to provide trusted administrators of the site, full access to the site\'s data model.

However, after going through dja

5条回答
  •  忘掉有多难
    2020-12-05 15:56

    I disagree with most of the other answers.

    Simply put, there is no match for what you get for free using the admin app.

    Your first customization of the admin will be tough as you'll be facing a steep learning curve (you will need to deal with overriding templates, Managers, ModelAdmins, probably use database views, the CSS and JS, some additional forms and validation rules, etc...). But once that is done, you'll start to feel king in bending the admin system to your needs. I have built a complex inventory and accounting web application with data-entry, reporting, and permission system all based solely on the admin interface and back-end.

提交回复
热议问题