Files
Example-TCG-Site/proxy/views.py
2026-01-26 04:18:46 -06:00

12 lines
339 B
Python

from django.shortcuts import render
from django.conf import settings
from django.http import Http404
def proxy_info(request):
if not getattr(settings, 'FEATURE_PLAYTEST_PROXY', False):
raise Http404("Proxy service is not available")
return render(request, 'proxy/info.html', {
'title': 'Proxy Service'
})