view shoutbox/forms.py @ 1017:21c592cac71c

ManifestStaticFilesStorage: stop using form Media. It's okay for the admin, but not for user facing stuff.
author Brian Neal <bgneal@gmail.com>
date Sun, 06 Dec 2015 14:48:30 -0600
parents 4aadaf3bc234
children
line wrap: on
line source
"""
Forms for the Shoutbox application.
"""
from django import forms

class ShoutBoxForm(forms.Form):
   msg = forms.CharField(label='', max_length=2048, required=True)