5 lines
119 B
Python
5 lines
119 B
Python
from django import forms
|
|
|
|
class ObsIDSearchForm(forms.Form):
|
|
obsid = forms.CharField(label='obsid', max_length=11)
|