8 lines
203 B
Python
8 lines
203 B
Python
from django.db import models
|
|
from django.contrib.auth.models import AbstractUser
|
|
|
|
class CounterUser(AbstractUser):
|
|
pass
|
|
|
|
def __str__(self):
|
|
return self.username + ' (' + self.email + ')'
|