[Answer]-Form fields are not being populated

1👍

It seems that you defined your “context” as a regular python dictionary. You need to use:

from django.template import Context

context = Context()

Leave a comment