##// END OF EJS Templates
Added a text area to the posting form. Added a basic CSS style. Changed threads list a bit.
Added a text area to the posting form. Added a basic CSS style. Changed threads list a bit.

File last commit:

r16:fdfec9a2 default
r16:fdfec9a2 default
Show More
forms.py
8 lines | 232 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):
title = forms.CharField(max_length = 100)
neko259
Added a text area to the posting form. Added a basic CSS style. Changed threads list a bit.
r16 text = forms.CharField(widget = forms.Textarea)
Ilyas
Added creating new thread form...
r14 image = forms.ImageField()
tags = forms.CharField(max_length=100)