Django 数据库设计帮助
我正在设计一个项目管理网站,除了其他详细信息之外,用户还需要输入项目所需的硬件。例如,
项目名称、项目位置 和硬件: A(5个单位) B (10 单位) C(1 单元)
每个项目的硬件类型数量不固定。我该如何设计这个模型?
I'm designing a project management site, The user needs to enter the hardware required for the project in addition to other details. For example,
project_name, project_location
and hardware:
A (5 units)
B (10 units)
C (1 unit)
The number of hardware types per project is not fixed. How do I design this model?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这能完成这项工作吗?
如果您使用管理界面,您可以在 ProjectAdmin 中附加内联的硬件单元,用户将能够直接在项目管理编辑页面中选择硬件以及每个硬件的单元数量。
Could this do the job?
If you use the Admin interface, you could attach inlines of HardwareUnits in ProjectAdmin, and the user will be able to chose the hardwares and the number of units for each of them directly in the Project admin edit page.