예제 #1
0
파일: urls.py 프로젝트: sofikovr/HW
"""step_tours URL Configuration

The `urlpatterns` list routes URLs to views. For more information please see:
    https://docs.djangoproject.com/en/3.0/topics/http/urls/
Examples:
Function views
    1. Add an import:  from my_app import views
    2. Add a URL to urlpatterns:  path('', views.home, name='home')
Class-based views
    1. Add an import:  from other_app.views import Home
    2. Add a URL to urlpatterns:  path('', Home.as_view(), name='home')
Including another URLconf
    1. Import the include() function: from django.urls import include, path
    2. Add a URL to urlpatterns:  path('blog/', include('blog.urls'))
"""
import path as path
from django.contrib import admin
from django.urls import path

from tours.views import MainView, DepartureView, TourView

urlpatterns = [
    path('', MainView.as_view(), name='main'),
    path('departure/<str:departure>/',
         DepartureView.as_view(),
         name='departure'),
    path('tour/<int:id>/', TourView.as_view(), name='tour'),
    path('admin/', admin.site.urls),
]
예제 #2
0
The `urlpatterns` list routes URLs to views. For more information please see:
    https://docs.djangoproject.com/en/3.0/topics/http/urls/
Examples:
Function views
    1. Add an import:  from my_app import views
    2. Add a URL to urlpatterns:  path('', views.home, name='home')
Class-based views
    1. Add an import:  from other_app.views import Home
    2. Add a URL to urlpatterns:  path('', Home.as_view(), name='home')
Including another URLconf
    1. Import the include() function: from django.urls import include, path
    2. Add a URL to urlpatterns:  path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path

from tours.views import TourView, TourDetailView
from employees.views import ApprovingManagerView, CustomObtainAuthToken

urlpatterns = [
    path("admin/", admin.site.urls),
    path("api-token-auth/",
         CustomObtainAuthToken.as_view(),
         name="api_token_auth"),
    path("tours/", TourView.as_view(), name="tours"),
    path("tours/<int:pk>/", TourDetailView.as_view(), name="tours_details"),
    path("approving_managers/",
         ApprovingManagerView.as_view(),
         name="approving_managers")
]
예제 #3
0
"""conf URL Configuration

The `urlpatterns` list routes URLs to views. For more information please see:
    https://docs.djangoproject.com/en/3.1/topics/http/urls/
Examples:
Function views
    1. Add an import:  from my_app import views
    2. Add a URL to urlpatterns:  path('', views.home, name='home')
Class-based views
    1. Add an import:  from other_app.views import Home
    2. Add a URL to urlpatterns:  path('', Home.as_view(), name='home')
Including another URLconf
    1. Import the include() function: from django.urls import include, path
    2. Add a URL to urlpatterns:  path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path
from tours.views import MainView, DepartureView, TourView

urlpatterns = [
    path('', MainView.as_view()),
    path('departure/<str:departure>/', DepartureView.as_view()),
    path('tour/<int:id>/', TourView.as_view()),
    path('admin/', admin.site.urls)
]
예제 #4
0
from django.urls import path

from tours.views import MainView, DepartureView, TourView


urlpatterns = [
    path('', MainView.as_view(), name='index'),
    path('departure/<str:departure>/',
         DepartureView.as_view(),
         name='departures'),
    path('tour/<int:tour_id>/', TourView.as_view(), name='tours'),
]
예제 #5
0
from django.contrib import admin
from django.urls import path

from tours.views import MainView, DepartureView, TourView, custom_handler404, custom_handler500

urlpatterns = [
    path('admin/', admin.site.urls),
    path('', MainView.as_view()),
    path('departure/<str:departure_str_url>/', DepartureView.as_view()),
    path('tour/<int:tour_id_url>/', TourView.as_view()),
]

handler404 = custom_handler404
handler500 = custom_handler500
예제 #6
0
from django.contrib import admin
from django.urls import path
from tours.views import MainPageView, DepartureView, TourView

urlpatterns = [
    path('admin/', admin.site.urls),
    path("", MainPageView.as_view()),
    path("departure/<str:departure_id>/", DepartureView.as_view()),
    path("tour/<int:tour_id>/", TourView.as_view()),
]
예제 #7
0
"""stepik_tours URL Configuration

The `urlpatterns` list routes URLs to views. For more information please see:
    https://docs.djangoproject.com/en/3.1/topics/http/urls/
Examples:
Function views
    1. Add an import:  from my_app import views
    2. Add a URL to urlpatterns:  path('', views.home, name='home')
Class-based views
    1. Add an import:  from other_app.views import Home
    2. Add a URL to urlpatterns:  path('', Home.as_view(), name='home')
Including another URLconf
    1. Import the include() function: from django.urls import include, path
    2. Add a URL to urlpatterns:  path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path
from tours.views import MainView, DepartureView, TourView

handler404 = 'tours.views.page_not_found_view'
handler500 = 'tours.views.error_view'

urlpatterns = [
    path('admin/', admin.site.urls),
    path('', MainView.as_view(), name='Main View'),
    path('departure/<str:departure>',
         DepartureView.as_view(),
         name='Departure View'),
    path('tour/<int:id>', TourView.as_view(), name='Tour View'),
]
예제 #8
0
"""stepik_tours URL Configuration

The `urlpatterns` list routes URLs to views. For more information please see:
    https://docs.djangoproject.com/en/3.1/topics/http/urls/
Examples:
Function views
    1. Add an import:  from my_app import views
    2. Add a URL to urlpatterns:  path('', views.home, name='home')
Class-based views
    1. Add an import:  from other_app.views import Home
    2. Add a URL to urlpatterns:  path('', Home.as_view(), name='home')
Including another URLconf
    1. Import the include() function: from django.urls import include, path
    2. Add a URL to urlpatterns:  path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path

from tours.views import DepartureView, MainView, TourView

handler500 = 'tours.views.custom_handler500'

urlpatterns = [
    path('', MainView.as_view(), name='index'),
    path('departure/<str:departure>/', DepartureView.as_view()),
    path('tour/<int:tour_id>', TourView.as_view()),
    path('admin/', admin.site.urls),
]
"""stepic_tours URL Configuration

The `urlpatterns` list routes URLs to views. For more information please see:
    https://docs.djangoproject.com/en/3.0/topics/http/urls/
Examples:
Function views
    1. Add an import:  from my_app import views
    2. Add a URL to urlpatterns:  path('', views.home, name='home')
Class-based views
    1. Add an import:  from other_app.views import Home
    2. Add a URL to urlpatterns:  path('', Home.as_view(), name='home')
Including another URLconf
    1. Import the include() function: from django.urls import include, path
    2. Add a URL to urlpatterns:  path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path
from tours.views import MainView, DepartureView, TourView

urlpatterns = [
    path('admin/', admin.site.urls),
    path("", MainView.as_view()),
    path("departure/<str:departure>", DepartureView.as_view()),
    path("tour/<int:id>", TourView.as_view()),
]
예제 #10
0
파일: urls.py 프로젝트: ArchAL85/archal85
from django.urls import path
from tours.views import MainView, DepartureView, TourView

urlpatterns = [
    path('', MainView.as_view()),
    path('departure/<str:departure_id>', DepartureView.as_view(), name='departure_url'),
    path('tour/<int:tour_id>', TourView.as_view(), name='tour_url'),
]
from django.contrib import admin
from django.urls import path

from tours.views import MainView, DepartureView, TourView

urlpatterns = [
    path('', MainView.as_view()),
    path('departure/<str:departure_name>/',
         DepartureView.as_view(),
         name="departure_view"),
    path('tour/<int:id>/', TourView.as_view(), name="tour_view"),
    path('admin/', admin.site.urls),
]
예제 #12
0
"""stepik_tours URL Configuration

The `urlpatterns` list routes URLs to views. For more information please see:
    https://docs.djangoproject.com/en/3.0/topics/http/urls/
Examples:
Function views
    1. Add an import:  from my_app import views
    2. Add a URL to urlpatterns:  path('', views.home, name='home')
Class-based views
    1. Add an import:  from other_app.views import Home
    2. Add a URL to urlpatterns:  path('', Home.as_view(), name='home')
Including another URLconf
    1. Import the include() function: from django.urls import include, path
    2. Add a URL to urlpatterns:  path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path

from tours.views import TourView, MainView, DepartureView

urlpatterns = [
    path('admin/', admin.site.urls),
    path('tour/<int:id_tour>', TourView.as_view(), name='Tour'),
    path('departure/<str:departure>',
         DepartureView.as_view(),
         name='Departure'),
    path('', MainView.as_view(), name='main'),
]
예제 #13
0
"""stepik_tours URL Configuration

The `urlpatterns` list routes URLs to views. For more information please see:
    https://docs.djangoproject.com/en/3.0/topics/http/urls/
Examples:
Function views
    1. Add an import:  from my_app import views
    2. Add a URL to urlpatterns:  path('', views.home, name='home')
Class-based views
    1. Add an import:  from other_app.views import Home
    2. Add a URL to urlpatterns:  path('', Home.as_view(), name='home')
Including another URLconf
    1. Import the include() function: from django.urls import include, path
    2. Add a URL to urlpatterns:  path('blog/', include('blog.urls'))
"""
from django.urls import path

from tours.views import MainView, DepartureView, TourView

urlpatterns = [
    path('', MainView.as_view(), name='Main_page_all_tours'),
    path('departure/<str:city_id>/',
         DepartureView.as_view(),
         name='Departure_from_city'),
    path('tour/<int:id>/', TourView.as_view(), name='Tour_description_page'),
]
예제 #14
0
from django.contrib import admin
from django.urls import path
from tours.views import MainPageView, DepartureView, TourView

urlpatterns = [
    path("", MainPageView.as_view(), name='main'),
    path("departure/<str:departure_id>/",
         DepartureView.as_view(),
         name='departure'),
    path("tour/<int:tour_id>/", TourView.as_view(), name='tour'),
    path('admin/', admin.site.urls),
]