9 lines
No EOL
200 B
Python
9 lines
No EOL
200 B
Python
from django.db import models
|
|
from django.contrib.auth import get_user_model
|
|
|
|
from localauth.models import Profile
|
|
|
|
class ClientProfile(Profile):
|
|
@property
|
|
def balance(self):
|
|
return 0.0 |