您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

13 行
239 B

  1. import hashlib
  2. from django.contrib.auth.models import User as BaseUser
  3. class User(BaseUser):
  4. @property
  5. def gravatar(self):
  6. return hashlib.md5(self.email.encode('utf-8')).hexdigest()
  7. class Meta:
  8. proxy = True