Files
deb-python-django-formtools/formtools/wizard/forms.py
2013-11-02 10:18:46 -07:00

9 lines
211 B
Python

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)