form_type的表单下拉列表

时间:2016-05-08 02:38:54

标签: django django-models content-type pythonanywhere generic-foreign-key

请注意以下代码行,其目的是限制表单下拉列表中显示的模型,以便contenttype字段仅包含“Facilitator”,“Enumerator”和“Tutor”模型。这在localhost上完美地工作,但是当我将项目托管到python的任何地方它都不起作用,即下拉列表显示没有选项。请问有什么不对?有人帮忙......

    content_type = models.ForeignKey(ContentType, limit_choices_to = {"model__in": ('Facilitator', 'Enumerator', 'Tutor')}, verbose_name="Collected by")

1 个答案:

答案 0 :(得分:1)

从数据库中提取选项。这些条目是否在PythonAnywhere数据库中?