mirror of
https://github.com/django/django.git
synced 2024-11-18 15:34:16 +00:00
14 lines
345 B
Python
14 lines
345 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),
|
|
url(r'^environ_view/$', views.environ_view),
|
|
)
|