def user_flag_required(*flags): def check(user): return any(getattr(user.profile, f, False) for f in flags) return user_passes_test(check)