mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-02-11 00:50:52 +03:00
15 lines
466 B
Python
15 lines
466 B
Python
from django.contrib.auth.models import AbstractUser
|
|
from django.db.models import CharField
|
|
from django.urls import reverse
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
class User(AbstractUser):
|
|
|
|
# First Name and Last Name do not cover name patterns
|
|
# around the globe.
|
|
name = CharField(_("Name of User"), blank=True, max_length=255)
|
|
|
|
def get_absolute_url(self):
|
|
return reverse("users:detail", kwargs={"username": self.username})
|