forked from DGNum/gestioCOF
18 lines
445 B
Python
18 lines
445 B
Python
|
from django.contrib.auth.models import User
|
||
|
|
||
|
|
||
|
def create_user(username, is_cof=False, is_buro=False):
|
||
|
user = User.objects.create_user(username=username, password=username)
|
||
|
user.profile.is_cof = is_cof
|
||
|
user.profile.is_buro = is_buro
|
||
|
user.profile.save()
|
||
|
return user
|
||
|
|
||
|
|
||
|
def user_is_cof(user):
|
||
|
return (user is not None) and user.profile.is_cof
|
||
|
|
||
|
|
||
|
def user_is_staff(user):
|
||
|
return (user is not None) and user.profile.is_buro
|