Using Django 1.5, I need a Default values button with my form.
The form is a forms.ModelForm
and the model is populated using Django fixtures when the application is deployed. Basically, the reset button would fetch the fixture content and update the form content with it.
Do I have to open the fixture file with os
and stuff ?