##// END OF EJS Templates
Removed call to en internal method in test.
Removed call to en internal method in test.

File last commit:

r18:174f8766 default
r19:e1992943 default
Show More
forms.py
8 lines | 232 B | text/x-python | PythonLexer
from django import forms
class NewThreadForm(forms.Form):
title = forms.CharField(max_length = 100)
text = forms.CharField(widget = forms.Textarea)
image = forms.ImageField()
tags = forms.CharField(max_length=100)