6 lines
97 B
Python
6 lines
97 B
Python
from django import forms
|
|
|
|
|
|
class OrderingStateForm(forms.Form):
|
|
ordering = forms.CharField()
|