Browse Source

djangoprojekt

master
parent
commit
de8f10e8dd
1 changed files with 4 additions and 3 deletions
  1. 4
    3
      news1/news1/urls.py

+ 4
- 3
news1/news1/urls.py View File

@@ -13,9 +13,10 @@ Including another URLconf
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path

from django.contrib import admin
from django.urls import path, include
urlpatterns = [
path('posts/' , include('posts.urls')),
path('admin/', admin.site.urls),

]

Loading…
Cancel
Save