+/ProyectoWebApp/ views urls models
This commit is contained in:
parent
095288a44c
commit
86a09d373e
3
ProyectoWeb/ProyectoWebApp/models.py
Normal file
3
ProyectoWeb/ProyectoWebApp/models.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.db import models
|
||||
|
||||
# Create your models here.
|
10
ProyectoWeb/ProyectoWebApp/urls.py
Normal file
10
ProyectoWeb/ProyectoWebApp/urls.py
Normal file
@ -0,0 +1,10 @@
|
||||
from django.urls import path
|
||||
from ProyectoWebApp import views
|
||||
|
||||
urlpatterns = [
|
||||
path('', views.home, name="Inicio"),
|
||||
path('servicios/', views.servicios, name ='Servicios'),
|
||||
path('tienda/', views.tienda, name ='Tienda'),
|
||||
path('blog/', views.blog, name ='Blog'),
|
||||
path('contacto/', views.contacto, name='Contacto'),
|
||||
]
|
18
ProyectoWeb/ProyectoWebApp/views.py
Normal file
18
ProyectoWeb/ProyectoWebApp/views.py
Normal file
@ -0,0 +1,18 @@
|
||||
from django.shortcuts import render, HttpResponse
|
||||
|
||||
def home(request):
|
||||
return render(request, "ProyectoWebApp/home.html")
|
||||
|
||||
def servicios(request):
|
||||
return render(request, "ProyectoWebApp/servicios.html")
|
||||
|
||||
def tienda(request):
|
||||
return render(request, "ProyectoWebApp/tienda.html")
|
||||
|
||||
def blog(request):
|
||||
return render(request, "ProyectoWebApp/blog.html")
|
||||
|
||||
def contacto(request):
|
||||
return render(request, "ProyectoWebApp/contacto.html")
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user