##// 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
Ilyas
Added creating new thread form...
r14 from django import forms
neko259
Added a text area to the posting form. Added a basic CSS style. Changed threads list a bit.
r16
Ilyas
Added creating new thread form...
r14 class NewThreadForm(forms.Form):
neko259
Added localization (not fully working). Added tags posting. Changed the design a bit.
r24 title = forms.CharField(max_length=100)
text = forms.CharField(widget=forms.Textarea)
Ilyas
Added creating new thread form...
r14 image = forms.ImageField()
tags = forms.CharField(max_length=100)