0

我的问题很简单,我在 models.py 中创建了一个自定义用户模型(称为 Staff)

我想知道如何启用这个名为 Staff 的用户模型来使用 django 管理面板换句话说,我如何将 Staff 添加到在管理面板中创建的组中?

提前致谢

4

1 回答 1

0

There's a is_staff flag for users. For your Staff class, just have

class Staff(User):
    is_staff = True
    ---Everything else---

Reference source django documentation

If you want to add staff permissions to users, simply click on the staff checkbox in the Admin interface.

于 2013-01-13T01:43:19.257 回答