##// 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
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)