[Answered ]-Django form without any fields

2👍

I found a solution which fits my needs:
Just take any_field and make it a hidden field:

from django.forms import HiddenInput

class MyModelForm(ModelForm):
    class Meta:
        model = MyModel
        widgets = {'any_field': HiddenInput(),}

Dont forget to exclude all the other fields.

Leave a comment