mirror of
https://github.com/haiwen/seahub.git
synced 2025-06-27 07:28:42 +00:00
11 lines
198 B
Python
11 lines
198 B
Python
import os
|
|
|
|
from django import forms
|
|
|
|
class MessageForm(forms.Form):
|
|
message = forms.CharField(max_length=500)
|
|
|
|
class MessageReplyForm(forms.Form):
|
|
message = forms.CharField(max_length=150)
|
|
|