##// END OF EJS Templates
Fixed getting posts for a thread. Implemented thread getting test.
Fixed getting posts for a thread. Implemented thread getting test.

File last commit:

r16:fdfec9a2 default
r17:e40b2431 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)