* removes auto-translating of setup data for database (keep english values in db and translate for templates)
24 lines
497 B
Python
24 lines
497 B
Python
"""
|
|
Author: Michel Peltriaux
|
|
Organization: Struktur- und Genehmigungsdirektion Nord, Rhineland-Palatinate, Germany
|
|
Contact: michel.peltriaux@sgdnord.rlp.de
|
|
Created on: 02.07.21
|
|
|
|
"""
|
|
from django.contrib.auth.models import User
|
|
|
|
|
|
def in_group(user: User, group: str) -> bool:
|
|
""" Checks if the user is part of a group
|
|
|
|
Args:
|
|
user (User): The user object
|
|
group (str): The group's name
|
|
|
|
Returns:
|
|
bool
|
|
"""
|
|
return user.groups.filter(
|
|
name=group
|
|
)
|