Switch to unified view

a b/OSSEval/IMDBMovieApp/forms.py
1
# This Source Code Form of OSSEval is subject to the terms of the GNU AFFERO
2
# GENERAL PUBLIC LICENSE, v. 3.0. If a copy of the AGPL was not
3
# distributed with this file, You can obtain one at http://www.gnu.org/licenses/agpl.txt
4
#
5
# OSSeval is powered by the SOS Open Source AGPL edition.
6
#  The AGPL requires that you do not remove the SOS Open Source attribution and copyright 
7
#  notices from the user interface (see section 5.d below).
8
9
# OSSEval Copyright 2014 Bitergium SLL
10
# SOS Open Source Copyright 2012 Roberto Galoppini
11
# Author: Davide Galletti 
12
13
14
from django import forms
15
16
class SearchForm(forms.Form):
17
    title = forms.CharField(max_length=50)
18
    analysis_id = forms.CharField(widget=forms.HiddenInput())