[Fixed]-Models list as choices in a Model

1👍

EDITED

Your field model should be a foreign key to the ContentType model, Django will then render the field as a select box with all models available

content_type = models.ForeignKey(ContentType)

Leave a comment