added bootstrap

Signed-off-by: Jochen Mehlich <contact@jochenmehlich.de>
This commit is contained in:
Jochen Mehlich 2023-12-19 15:35:09 +01:00
parent 4e12de8407
commit 1962761beb
3 changed files with 10 additions and 1 deletions

View File

@ -38,6 +38,7 @@ INSTALLED_APPS = [
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'bootstrap5',
'sourcePerson'
]

View File

@ -14,8 +14,10 @@ Including another URLconf
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path
from django.urls import path, include
from sourcePerson import urls
urlpatterns = [
path('admin/', admin.site.urls),
path('person/', include('sourcePerson.urls'))
]

6
sourcePerson/urls.py Normal file
View File

@ -0,0 +1,6 @@
from django.urls import path
from . import views
urlpatterns = [
path("create", views.ping)
]