You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

12 lines
348 B

from django.conf import settings
def payments(request):
show_pricing = settings.USE_PAYMENTS
if show_pricing and request.user.is_authenticated:
profile = request.user.profile
if profile.current_team_id and profile.current_team_id != profile.id:
show_pricing = False
return {'show_pricing': show_pricing}