Generalized the 'single step' case in TreeEntity.get_path to include the case where...
[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