Adarnof 477e579eba Rewrote views to handle new models.
Everything works but comments.
2016-03-13 21:47:09 +00:00

8 lines
306 B
Python
Executable File

from django import forms
class HRApplicationCommentForm(forms.Form):
comment = forms.CharField(widget=forms.Textarea, required=False, label="Comment", max_length=254)
class HRApplicationSearchForm(forms.Form):
search_string = forms.CharField(max_length=254, required=True, label="Search String")