Update webservice/urls.py
Browse files- webservice/urls.py +5 -19
webservice/urls.py
CHANGED
|
@@ -1,23 +1,9 @@
|
|
| 1 |
-
|
| 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 |
-
"""
|
| 16 |
-
from django.conf.urls import url, include
|
| 17 |
from django.contrib import admin
|
|
|
|
| 18 |
|
| 19 |
urlpatterns = [
|
| 20 |
url(r'^admin/', admin.site.urls),
|
| 21 |
-
url(r'^',
|
| 22 |
-
|
| 23 |
-
]
|
|
|
|
| 1 |
+
from django.conf.urls import url
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
from django.contrib import admin
|
| 3 |
+
from webservice.views import index
|
| 4 |
|
| 5 |
urlpatterns = [
|
| 6 |
url(r'^admin/', admin.site.urls),
|
| 7 |
+
url(r'^$', index, name='index'),
|
| 8 |
+
url(r'^webservice/views\.api$', index, name='views_api'),
|
| 9 |
+
]
|