Skip to content

Instantly share code, notes, and snippets.

@joshourisman
Created June 6, 2011 17:36
Show Gist options
  • Save joshourisman/1010693 to your computer and use it in GitHub Desktop.
Save joshourisman/1010693 to your computer and use it in GitHub Desktop.
from django.conf.urls.defaults import *
from views import ApprovedStoryList, CreateStory
urlpatterns = patterns(
'',
(r'^$', ApprovedStoryList.as_view()),
(r'^share/$', CreateStory.as_view()),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment