8 lines
167 B
Python
8 lines
167 B
Python
|
|
from django.http import HttpResponse
|
||
|
|
from django.shortcuts import render
|
||
|
|
|
||
|
|
|
||
|
|
# Create your views here.
|
||
|
|
def index(request):
|
||
|
|
return HttpResponse("Asian Tours Agency")
|