13 lines
389 B
Python
13 lines
389 B
Python
from django.contrib.sites.shortcuts import get_current_site
|
|
from django.http import HttpResponse
|
|
|
|
|
|
# Create your views here.
|
|
|
|
def index(request):
|
|
return HttpResponse(
|
|
"""Sorry, (this part of) domain {domain} is not reachable by IPv4.
|
|
Please upgrade to IPv6 and try to reach {domain} again.""".format(
|
|
domain=get_current_site(request).domain
|
|
)
|
|
)
|