1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-06-24 22:22:38 +00:00
seahub/profile/forms.py
2013-03-18 10:28:33 +08:00

9 lines
254 B
Python

# encoding: utf-8
from django import forms
from django.utils.translation import ugettext_lazy as _
class ProfileForm(forms.Form):
nickname = forms.CharField(max_length=64, required=False)
intro = forms.CharField(max_length=256, required=False)