1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-06-30 08:53:49 +00:00
seahub/group/forms.py
2012-06-27 11:27:00 +08:00

9 lines
191 B
Python

from django import forms
class MessageForm(forms.Form):
message = forms.CharField(max_length=500)
class MessageReplyForm(forms.Form):
message = forms.CharField(max_length=150)