diff --git a/ProyectoWeb/ProyectoWeb/settings.py b/ProyectoWeb/ProyectoWeb/settings.py index dfd9693..124760e 100644 --- a/ProyectoWeb/ProyectoWeb/settings.py +++ b/ProyectoWeb/ProyectoWeb/settings.py @@ -38,6 +38,7 @@ INSTALLED_APPS = [ 'django.contrib.messages', 'django.contrib.staticfiles', 'ProyectoWebApp', + 'servicios', ] MIDDLEWARE = [ diff --git a/ProyectoWeb/ProyectoWeb/urls.py b/ProyectoWeb/ProyectoWeb/urls.py index 5596116..9c622f0 100644 --- a/ProyectoWeb/ProyectoWeb/urls.py +++ b/ProyectoWeb/ProyectoWeb/urls.py @@ -21,4 +21,5 @@ from django.urls import path, include urlpatterns = [ path('admin/', admin.site.urls), path('', include('ProyectoWebApp.urls')), + path('servicios/', include('servicios.urls')), ] diff --git a/ProyectoWeb/ProyectoWebApp/apps.py b/ProyectoWeb/ProyectoWebApp/apps.py new file mode 100644 index 0000000..a99c0ba --- /dev/null +++ b/ProyectoWeb/ProyectoWebApp/apps.py @@ -0,0 +1,7 @@ +from django.apps import AppConfig + + +class ProyectowebappConfig(AppConfig): + name = 'ProyectoWebApp' + + diff --git a/ProyectoWeb/ProyectoWebApp/models.py b/ProyectoWeb/ProyectoWebApp/models.py deleted file mode 100644 index 71a8362..0000000 --- a/ProyectoWeb/ProyectoWebApp/models.py +++ /dev/null @@ -1,3 +0,0 @@ -from django.db import models - -# Create your models here. diff --git a/ProyectoWeb/ProyectoWebApp/templates/ProyectoWebApp/base.html b/ProyectoWeb/ProyectoWebApp/templates/ProyectoWebApp/base.html index 46bb9fb..d166e5f 100644 --- a/ProyectoWeb/ProyectoWebApp/templates/ProyectoWebApp/base.html +++ b/ProyectoWeb/ProyectoWebApp/templates/ProyectoWebApp/base.html @@ -8,7 +8,7 @@ - + @@ -28,7 +28,7 @@