mirror of
https://github.com/django/django.git
synced 2024-11-18 23:44:22 +00:00
2f02a05ffb
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17241 bcc190cf-cafb-0310-a4f2-bffc1f526a37
12 lines
295 B
Python
12 lines
295 B
Python
from __future__ import absolute_import
|
|
|
|
from django.conf.urls import patterns, url
|
|
|
|
from . import views
|
|
|
|
|
|
urlpatterns = patterns('',
|
|
url(r'^example_view/$', views.example_view),
|
|
url(r'^model_view/$', views.model_view),
|
|
url(r'^create_model_instance/$', views.create_model_instance),
|
|
) |