This is what I have:
myview.py with a view that takes a parameter user:
myview.py
user
def myview(request, user): form = MyForm(reques
You are posting to the same view that also serves the form. So at first, the view is called and serves the form. When you post the form, the same view gets called but this time you process the form. That's why the action is empty.