[Fixed]-Django model namespace error: missing field in ModelField form

1👍

Field names should be strings, therefore you need to enclose them in quotes, such as:

fields = (
    'product_code',
    #other fields, etc
)
👤Selcuk

Leave a comment