Removed json version of results from the ajax API. Improved checks for search existen...
[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