from django.conf.urls import url from .views import * urlpatterns = [ url(r'^$', index, name='index'), url(r'about', about, name='about'), ]