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
322 B

  1. from django.conf import settings
  2. def payments(request):
  3. show_pricing = settings.USE_PAYMENTS
  4. if show_pricing and request.user.is_authenticated():
  5. profile = request.user.profile
  6. if profile.id != profile.current_team_id:
  7. show_pricing = False
  8. return {'show_pricing': show_pricing}