Django 数据库设计帮助

发布于 2024-11-12 05:46:43 字数 134 浏览 2 评论 0原文

我正在设计一个项目管理网站,除了其他详细信息之外,用户还需要输入项目所需的硬件。例如,

项目名称、项目位置 和硬件: 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笑忘罢 2024-11-19 05:46:43

这能完成这项工作吗?

class Project(models.Model):
    name = models.CharField()
    location = models.CharField()

class Hardware(models.Model):
    name = models.CharField()

class HardwareUnits(models.Model):
    project = models.ForeignKey(Project)
    hardware = models.ForeignKey(Hardware)
    unit_count = models.IntegerField()

如果您使用管理界面,您可以在 ProjectAdmin 中附加内联的硬件单元,用户将能够直接在项目管理编辑页面中选择硬件以及每个硬件的单元数量。

Could this do the job?

class Project(models.Model):
    name = models.CharField()
    location = models.CharField()

class Hardware(models.Model):
    name = models.CharField()

class HardwareUnits(models.Model):
    project = models.ForeignKey(Project)
    hardware = models.ForeignKey(Hardware)
    unit_count = models.IntegerField()

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文