From 1cf52e3dd318c04cea0ab3a67dd7560e1e8136bb Mon Sep 17 00:00:00 2001 From: "jp.av.dev" Date: Mon, 16 Nov 2020 20:45:37 -0300 Subject: [PATCH] --- 7_Proyecto_Web_Completo.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/7_Proyecto_Web_Completo.md b/7_Proyecto_Web_Completo.md index 1b4a192..3a354d2 100644 --- a/7_Proyecto_Web_Completo.md +++ b/7_Proyecto_Web_Completo.md @@ -47,6 +47,8 @@ python3 manage.py startapp ProyectoWebApp python3 manage.py runserver 192.168.0.4:8000' ``` +## Creación de las Vistas + #### Menu: - Home - Servicios @@ -75,6 +77,9 @@ def blog(request): def contacto(request): return HttpResponse("Contacto") ``` + +## Registro de URLs + Project/**urls.py** ``` from django.contrib import admin @@ -96,7 +101,7 @@ urlpatterns = [ *urls.py explica como organizar urls para manejar multiples Apps* -### Organizar URLs +### Organizar URLs por App **Including another URLconf** - 1. **Import** the **include()** function: `from django.urls import include, path`