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.

13 lines
365 B

8 years ago
  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. if request.profile != request.team:
  6. # Hide "Pricing" tab when user is not working on their
  7. # own team
  8. show_pricing = False
  9. return {'show_pricing': show_pricing}