9 lines
238 B
Python
9 lines
238 B
Python
from django.shortcuts import render
|
|
from django.http import HttpResponse
|
|
|
|
def index(request):
|
|
return HttpResponse("<h1>Don Confiado</h1></br><a href='./comprar'>Comprar</a>")
|
|
|
|
def buy(request):
|
|
return HttpResponse("Nombre: ....")
|