1 2 3 4 5 6 7 8
from django.conf import settings def get_protocol(): if settings.DEBUG: return "http:" else: return "https:"