2018-12-08 06:52:28 +08:00
|
|
|
from django.urls import path
|
Fixed #2879 -- Added support for the integration with Selenium and other in-browser testing frameworks. Also added the first Selenium tests for `contrib.admin`. Many thanks to everyone for their contributions and feedback: Mikeal Rogers, Dirk Datzert, mir, Simon G., Almad, Russell Keith-Magee, Denis Golomazov, devin, robertrv, andrewbadr, Idan Gazit, voidspace, Tom Christie, hjwp2, Adam Nelson, Jannis Leidel, Anssi Kääriäinen, Preston Holmes, Bruno Renié and Jacob Kaplan-Moss.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17241 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2011-12-22 16:33:58 +08:00
|
|
|
|
|
|
|
from . import views
|
|
|
|
|
2014-04-02 08:46:34 +08:00
|
|
|
urlpatterns = [
|
2018-12-08 06:52:28 +08:00
|
|
|
path('example_view/', views.example_view),
|
|
|
|
path('streaming_example_view/', views.streaming_example_view),
|
|
|
|
path('model_view/', views.model_view),
|
|
|
|
path('create_model_instance/', views.create_model_instance),
|
|
|
|
path('environ_view/', views.environ_view),
|
|
|
|
path('subview_calling_view/', views.subview_calling_view),
|
|
|
|
path('subview/', views.subview),
|
|
|
|
path('check_model_instance_from_subview/', views.check_model_instance_from_subview),
|
|
|
|
path('method_view/', views.method_view),
|
2014-04-02 08:46:34 +08:00
|
|
|
]
|