mirror of
https://github.com/haiwen/seahub.git
synced 2025-06-24 22:22:38 +00:00
9 lines
254 B
Python
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)
|
|
|