1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-01 15:09:14 +00:00

Modify profile

This commit is contained in:
xiez
2012-06-21 20:53:13 +08:00
parent d8c5604687
commit d477e543e7
13 changed files with 90 additions and 67 deletions

View File

@@ -1,8 +1,7 @@
from django.db import models
from django.contrib.auth.models import User
class Profile(models.Model):
user = models.EmailField(unique=True)
nickname = models.CharField(max_length=256, blank=True)
nickname = models.CharField(max_length=64, blank=True)
intro = models.TextField(max_length=256, blank=True)