8 lines
170 B
Python
8 lines
170 B
Python
from django.shortcuts import render
|
|
from django.http import HttpResponse
|
|
|
|
|
|
def hola(request):
|
|
return HttpResponse("<h1>Hello, World!</h1>")
|
|
# Create your views here.
|