intro_Django/ProyectoWeb/ProyectoWebApp/views.py
2020-11-21 04:07:02 -03:00

15 lines
375 B
Python

from django.shortcuts import render, HttpResponse
def home(request):
return render(request, "ProyectoWebApp/home.html")
def tienda(request):
return render(request, "ProyectoWebApp/tienda.html")
def contacto(request):
return render(request, "ProyectoWebApp/contacto.html")
def sample(request):
return render(request, "ProyectoWebApp/sample.html")