我需要有两个不同的登录/注册系统。
1: One for the general user.
2: Second for the Channels admin.
Both will have different email id, password etc in two different tables.
For the general user it will go in the `auth_user` table and for the channel
it I'd be creating another different models/table.
我知道 django 提供了一个完整的身份验证系统,可供普通用户使用。但是,如果同时使用频道管理员,我该如何实现呢?
我试图在 django 的文档中查找AUTHENTICATION_BACKENDS
and AUTH_USER_MODEL
,
我不明白如何为频道管理部分设置会话。
因此,如果有人能给我一个想法,如何以及有什么方法可以同时实现这两者。