summaryrefslogtreecommitdiff
path: root/django/contrib/formtools/wizard/forms.py
blob: cd00517fa3c0b19ad912b50e6ca225a0cf6d4a7c (plain)
1
2
3
4
5
6
7
8
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)