Skip to content

Instantly share code, notes, and snippets.

@craigderington
Created March 8, 2018 14:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save craigderington/438d12c9eb5c91812c3397ebd2362679 to your computer and use it in GitHub Desktop.
Save craigderington/438d12c9eb5c91812c3397ebd2362679 to your computer and use it in GitHub Desktop.
Django URLs Example
# urls.py
from django.conf.urls import url
from views import CustomerListView
urlpatterns = [
url(r'^customers/$', CustomerListView.as_view()),
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment