mirror of
https://github.com/haiwen/seahub.git
synced 2025-06-25 14:43:15 +00:00
9 lines
226 B
Python
9 lines
226 B
Python
|
from django import forms
|
||
|
|
||
|
class SetUserProfileForm(forms.Form):
|
||
|
|
||
|
status = forms.CharField(max_length=140, required=False)
|
||
|
interests = forms.CharField(max_length=256, required=False)
|
||
|
|
||
|
#signature = forms.CharField()
|