我有以下型号:
在Applications模型中,我有以下内容:
department = models.ForeignKey(Department)
candidate = models.ForeignKey(Candidate)
post = models.ForeignKey(Post)
application_received = models.DateField(null=True, blank=True)
post_filled = models.BooleanField(default=False)
我的问题有两个:
目前使用应用程序模型提供了所有相关细节。 我已经看了这么久,我看不到木头的树木,所以任何帮助,甚至为什么你这样做,将不胜感激!