Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要创建一个表单,其中行是用户列表,列是用户的所有权限。这些模型是默认的 django 用户和 django 权限的模型。
我该怎么做?有没有办法通过 django 表单来完成,或者我必须手动使用 django 和 js?
如果只想查看这些数据,提取相关信息(用户和权限实例),然后使用 django 模板生成表。Django 故意不“祝福”任何 css 或 js 框架,因此您需要自己编写 html(使用您选择的工具)。
我认为表格不会在这里帮助你。我建议你画出你想看到的东西,然后开始弄清楚 html 需要是什么样子。django 中的表单只是一种在 django 和用户之间传递数据的机制。您可以随意渲染它们。