generated from westfarn/web_django_template
11 lines
195 B
Python
11 lines
195 B
Python
from django.urls import path
|
|
|
|
from blog import views
|
|
|
|
app_name = "blog"
|
|
|
|
urlpatterns = [
|
|
path("", views.post_list, name="list"),
|
|
path("<slug:slug>/", views.post_detail, name="detail"),
|
|
]
|