forms.py 211 B

12345678
  1. from django import forms
  2. class ManagementForm(forms.Form):
  3. """
  4. ``ManagementForm`` is used to keep track of the current wizard step.
  5. """
  6. current_step = forms.CharField(widget=forms.HiddenInput)