arrowcounter/user/models.py
2019-08-05 15:57:50 +02:00

9 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 + ')'