You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

urls.py 1.2KB

123456789101112131415161718192021222324252627282930313233343536
  1. """PR URL Configuration
  2. The `urlpatterns` list routes URLs to views. For more information please see:
  3. https://docs.djangoproject.com/en/2.2/topics/http/urls/
  4. Examples:
  5. Function views
  6. 1. Add an import: from my_app import views
  7. 2. Add a URL to urlpatterns: path('', views.home, name='home')
  8. Class-based views
  9. 1. Add an import: from other_app.views import Home
  10. 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
  11. Including another URLconf
  12. 1. Import the include() function: from django.urls import include, path
  13. 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
  14. """
  15. from django.conf.urls import url
  16. from django.urls import path
  17. from polls import views
  18. urlpatterns = [
  19. path('', views.index , name='index'),
  20. path('new', views.new, name='new'),
  21. #path('index',views.index, name='index'),
  22. path('notice',views.index, name = 'index'),
  23. path('welcome', views.welcome_seite),
  24. path('home', views.welcome_seite),
  25. path('about', views.about_seite),
  26. path('delete/<int:deleteId>', views.delete, name ='delete'),
  27. #url(r'^new', views.new, name='new'),
  28. path('notices/', views.notice_list),
  29. path('notices/<int:id>/', views.notice_detail),
  30. ]