Trials: A feature flag can also be conditionally active for certain users. These can be your own staff or certain early adopters that you may be targeting, as follows: def my_view(request): if flag_is_active(request, 'flag_name'): # Behavior if flag is active.