1 2 3 4 5 6
from django.conf.urls import url from . import views urlpatterns = [ url(r'^$', views.post_list, name='post_list'), ]