git.ithinksw.org
/
philo.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge remote-tracking branch 'ithinksw/develop' into develop
[philo.git]
/
philo
/
contrib
/
sobol
/
forms.py
1
from django import forms
2
3
from philo.contrib.sobol.utils import SEARCH_ARG_GET_KEY
4
5
6
class BaseSearchForm(forms.BaseForm):
7
base_fields = {
8
SEARCH_ARG_GET_KEY: forms.CharField()
9
}
10
11
12
class SearchForm(forms.Form, BaseSearchForm):
13
pass