A Django beginner here having a lot of trouble getting forms working. Yes I\'ve worked through the tutorial and browsed the web a lot - what I have is mix of what I\'m finding h
Remember to register your model form to admin.py file. This is a common mistake
admin.py
Register your models here.
from . models import advancedUserForm admin.site.register(advancedUserForm)