from django.conf.urls import url from . import views urlpatterns = [ url(r'^$', views.random, name='random'), url(r'^show/(?P[0-9]+)/$', views.onequote, name="onequote"), url(r'^tag/(?P[0-9]+)/$', views.tags, name="tags"), url(r'^author/(?P[0-9]+)/$', views.author, name="author"), url(r'^all/$', views.all, name="all"), ]