Source code for ipt_connect.views
from django.http import HttpResponse
[docs]def home(request):
text = """<h1>IPT Connect</h1>
<a href="http://connect.iptnet.info/IPT2017">Results of IPT 2017</a>"""
return HttpResponse(text)