Created
October 17, 2015 00:21
-
-
Save mekhami/dce9e8c20e51c3f47709 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from django.conf.urls import include, url | |
| from .views import IndexView, ThanksView, ConfirmView | |
| urlpatterns = [ | |
| url(r'^$', IndexView.as_view(), name='index'), | |
| url(r'^confirm/$', ConfirmView.as_view(), name='confirm'), | |
| url(r'^thanks/$', ThanksView.as_view(), name='thanks'), | |
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from django.conf.urls import include, url, patterns | |
| from django.contrib import admin | |
| from django.conf import settings | |
| urlpatterns = [ | |
| url(r'^admin/', include(admin.site.urls)), | |
| url(r'^rsvp/', include('rsvp.urls', namespace='rsvp')), | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment