Beispiel #1
0
"""stepik_tours URL Configuration

The `urlpatterns` list routes URLs to views. For more information please see:
    https://docs.djangoproject.com/en/2.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(), name='stepik_title'),
    path('departure/<str:depar_id>/', DepartureView.as_view(), name='depart'),
    path('tour/<int:tour_id>/', TourView.as_view(), name='stepik_tours'),
]
Beispiel #2
0
from django.urls import path

from tours.views import MainView, DepartureView, TourView, custom_handler404, custom_handler505
"""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'))
"""

handler404 = custom_handler404
handler500 = custom_handler505

urlpatterns = [
    path('admin/', admin.site.urls),
    path('', MainView.as_view(), name="main"),
    path('departure/<str:departure>/',
         DepartureView.as_view(),
         name="departure"),
    path('tour/<int:id>/', TourView.as_view(), name="tour")
]
Beispiel #3
0
"""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
from tours.views import custom_handler404, custom_handler500

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

handler404 = custom_handler404
handler500 = custom_handler500
Beispiel #4
0
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()),
]
Beispiel #5
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 MainView, DepartureView, TourView
from tours.views import my_handler404, my_handler500


urlpatterns = [
    path('admin/', admin.site.urls),
    path('', MainView.as_view(), name='index_url'),
    path('departure/<str:departure>/', DepartureView.as_view(), name='departure_url'),
    path('tour/<int:id>/', TourView.as_view(), name='tour_url'),
]

handler404 = my_handler404
handler500 = my_handler500
Beispiel #6
0
"""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 django.urls import include, path
from tours.views import MainView, DepartureView, TourView

urlpatterns = [
    path('admin/', admin.site.urls),
    path("", MainView.as_view()),	
    path("departure/", DepartureView.as_view()),
    path("departure/<str:departure>", DepartureView.as_view()),
    path("tour/", TourView.as_view()),
    path("tour/<int:id>", TourView.as_view()),
]
Beispiel #7
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 MainView, DepartureView, TourView

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