Done blog post detail
[django-girls.git] / blog / urls.py
1 from django.conf.urls import url
2 from . import views
3
4 urlpatterns = [
5 url(r'^$', views.post_list, name='post_list'),
6 url(r'^post/(?P<pk>\d+)/$', views.post_detail, name='post_detail'),
7 ]