[Fixed]-Django form in a base class

1👍

You can add a custom context processor, which is useful for passing data to every template context, which will give every template access to your form.

As explained in the docs, you need to make a function that will return a dictionary containing your form, and point to it in the settings.

👤NS0

Leave a comment