[Fixed]-Django field choices not properly updating

1👍

✅

That’s not how Model choices work. You are not supposed to populate choices dynamically in models.

You should consider using a ForeignKey relation with SpecificRequirements in your model.

Leave a comment