Resolve "appointment location"
Closes #62 (closed)
Merge request reports
Activity
Filter activity
mentioned in commit b7ec3382
380 380 return False 381 381 382 382 383 @staticmethod 384 def get_by_user(the_user): 385 if isinstance(the_user, User): 386 workers = Worker.objects.filter(user=the_user) 387 if len(workers)>0: 388 return workers[0] 389 else: 390 return None 391 elif isinstance(user, Worker):
Please register or sign in to reply