view shoutbox/forms.py @ 1208:5c8a38122e24 modernize tip

Add unit test for POTD tasks.
author Brian Neal <bgneal@gmail.com>
date Tue, 28 Jan 2025 19:02:18 -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)