mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-02 07:27:04 +00:00
show 'profile' in home;add profile-modify in setting
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
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)
|
||||
intro = models.TextField(max_length=256, blank=True)
|
||||
|
||||
|
Reference in New Issue
Block a user