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/IPTdev">Results of IPT dev</a>""" return HttpResponse(text)