##// END OF EJS Templates
Added post publication date to the templates.
Added post publication date to the templates.

File last commit:

r24:bb515fee default
r26:67f0542d 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)