"""hypernews URL Configuration The `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/2.2/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, re_path from news.views import MainView, NewsView, SpecificNewsView, CreateView from django.conf import settings from django.conf.urls.static import static urlpatterns = [ path('', MainView.as_view()), path('news/', NewsView.as_view()), path('news/create/', CreateView.as_view()), re_path('news/(?P<link>[^/]*)/?', SpecificNewsView.as_view()), ] urlpatterns += static(settings.STATIC_URL)
"""hypernews URL Configuration The `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/2.2/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, re_path from news.views import AllNewsView, NewsView, MainView urlpatterns = [ path("", MainView.as_view()), path("news/", AllNewsView.as_view()), path("news/<int:news_id>/", NewsView.as_view()), ]
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.conf.urls.static import static from django.contrib import admin from django.urls import path, include from blog import settings from news.views import MainView, RegisterView, LoginView, logout_view, UsersView, UpdateUserView, ChangePasswordView from news.views.news_view import NewsListView, ShowNewsView, AddNewsView, SearchNewsView urlpatterns = [ path('admin/', admin.site.urls), path('', MainView.as_view(), name='index'), path('register', RegisterView.as_view(), name='register'), path('login', LoginView.as_view(), name='login'), path('logout', logout_view, name='logout'), path('users', UsersView.as_view(), name='users'), path('users/<pk>/edit', UpdateUserView.as_view(), name='update_user'), path('change_password', ChangePasswordView.as_view(), name='change_password'), path('news', NewsListView.as_view(), name='news_list'), path('news/add', AddNewsView.as_view(), name='add_news'), path('news/search', SearchNewsView.as_view(), name='find_news'), path('news/<pk>', ShowNewsView.as_view(), name='show_news'), path("api/v1/", include("api.urls")), ] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
"""hypernews URL Configuration The `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/2.2/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, re_path from news.views import BaseView, NewsView, MainView, ComingSoonView, CreateView urlpatterns = [ path('', ComingSoonView.as_view()), path('base/', BaseView.as_view()), path('news/', MainView.as_view()), path('news/create/', CreateView.as_view()), re_path('news/(?P<link>[^/]*)/?', NewsView.as_view()), ]
"""hypernews URL Configuration The `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/2.2/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 news.views import BaseView, NewsView, MainView, CreateView from django.conf.urls.static import static from django.conf import settings urlpatterns = [ path('', BaseView.as_view()), path('news/<int:news_id>/', NewsView.as_view()), path('news/', MainView.as_view(), name='main'), path('news/create/', CreateView.as_view(), name='create'), ] + static(settings.STATIC_URL)