Skip to content

Instantly share code, notes, and snippets.

@rdegges
Created October 12, 2012 23:32
Show Gist options
  • Save rdegges/3882259 to your computer and use it in GitHub Desktop.
Save rdegges/3882259 to your computer and use it in GitHub Desktop.
Django URL Example
"""Django URL configuration example."""
from django.conf.urls.defaults import patterns, url
urlpatterns = patterns('apps.accounts.views',
url(r'^create/$', 'create_account', name='create_account'),
url(r'^delete/$', 'delete_account', name='delete_account'),
url(r'^edit/$', 'edit_account', name='edit_account'),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment