kpsul/kfet/decorators.py

16 lines
349 B
Python
Raw Normal View History

2017-03-20 04:11:50 +01:00
from django.contrib.auth.decorators import user_passes_test
2016-09-01 00:45:44 +02:00
def kfet_is_team(user):
2021-02-24 00:28:17 +01:00
if (
hasattr(user, "profile")
and hasattr(user.profile, "account_kfet")
and user.profile.account_kfet.is_frozen
):
2021-02-24 00:25:48 +01:00
return False
return user.has_perm("kfet.is_team")
2017-03-21 00:24:44 +01:00
teamkfet_required = user_passes_test(kfet_is_team)