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