##// END OF EJS Templates
Added thread bumping.
Added thread bumping.

File last commit:

r24:bb515fee default
r25:beac4c3a default
Show More
forms.py
8 lines | 228 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)