7 lines
No EOL
153 B
Python
7 lines
No EOL
153 B
Python
from django.db import models
|
|
from django.contrib.auth import get_user_model
|
|
|
|
from localauth.models import Profile
|
|
|
|
class ClientProfile(Profile):
|
|
pass |