11👍
✅
You can also shortcut that by just outputting the management form, which consists of those two hidden fields:
{{ formset.management_form }}
I didn’t properly cite this info, which can be found at: http://docs.djangoproject.com/en/dev/topics/forms/formsets/
0👍
In poking around in the internals I found the answer to my own question:
{{formset.management_form.TOTAL_FORMS}}
{{formset.management_form.INITIAL_FORMS}}
- [Django]-How can I add javascript file to my ModelForm in django?
- [Django]-Is it possible to use context processors in Django without a request object?
Source:stackexchange.com