Skip to content

Commit 89f3ecf

Browse files
committed
add view to urls
1 parent 869e882 commit 89f3ecf

File tree

1 file changed

+3
-15
lines changed

1 file changed

+3
-15
lines changed

demo/urls.py

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,9 @@
1-
"""demo URL Configuration
2-
3-
The `urlpatterns` list routes URLs to views. For more information please see:
4-
https://docs.djangoproject.com/en/1.11/topics/http/urls/
5-
Examples:
6-
Function views
7-
1. Add an import: from my_app import views
8-
2. Add a URL to urlpatterns: url(r'^$', views.home, name='home')
9-
Class-based views
10-
1. Add an import: from other_app.views import Home
11-
2. Add a URL to urlpatterns: url(r'^$', Home.as_view(), name='home')
12-
Including another URLconf
13-
1. Import the include() function: from django.conf.urls import url, include
14-
2. Add a URL to urlpatterns: url(r'^blog/', include('blog.urls'))
15-
"""
161
from django.conf.urls import url
172
from django.contrib import admin
183

4+
from cbv_demo.views import UserViewSet
5+
196
urlpatterns = [
207
url(r'^admin/', admin.site.urls),
8+
url(r'^cbv_demo/user', UserViewSet.as_view()),
219
]

0 commit comments

Comments
 (0)