git-svn-id: http://code.djangoproject.com/svn/django/trunk@16307 bcc190cf-cafb-0310-a4f2-bffc1f526a37
8 lines
210 B
Python
8 lines
210 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)
|