1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-06-25 14:43:15 +00:00
seahub/profile/forms.py

9 lines
254 B
Python
Raw Normal View History

2012-06-21 12:53:13 +00:00
# encoding: utf-8
from django import forms
2013-01-17 03:01:00 +00:00
from django.utils.translation import ugettext_lazy as _
2012-06-21 12:53:13 +00:00
class ProfileForm(forms.Form):
2012-06-21 14:48:06 +00:00
nickname = forms.CharField(max_length=64, required=False)
intro = forms.CharField(max_length=256, required=False)