added bootstrap
Signed-off-by: Jochen Mehlich <contact@jochenmehlich.de>
This commit is contained in:
parent
4e12de8407
commit
1962761beb
@ -38,6 +38,7 @@ INSTALLED_APPS = [
|
||||
'django.contrib.sessions',
|
||||
'django.contrib.messages',
|
||||
'django.contrib.staticfiles',
|
||||
'bootstrap5',
|
||||
'sourcePerson'
|
||||
]
|
||||
|
||||
|
||||
@ -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
6
sourcePerson/urls.py
Normal file
@ -0,0 +1,6 @@
|
||||
from django.urls import path
|
||||
from . import views
|
||||
|
||||
urlpatterns = [
|
||||
path("create", views.ping)
|
||||
]
|
||||
Loading…
x
Reference in New Issue
Block a user