urls.py 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. """pythonweb URL Configuration
  2. The `urlpatterns` list routes URLs to views. For more information please see:
  3. https://docs.djangoproject.com/en/3.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.contrib import admin
  16. from django.urls import path
  17. from homeApp.views import home
  18. from scientificApp.views import index
  19. import scientificApp
  20. from django.conf.urls import include
  21. from common.views import article
  22. urlpatterns = [
  23. path('admin/', admin.site.urls),
  24. path('',home,name='home'),
  25. path('article/<str:id>',article,name='article'),
  26. path('aboutApp/', include('aboutApp.urls')),
  27. path('teamApp/', include('teamApp.urls')),
  28. path('scientific',scientificApp.views.index, name='scientific_index'),
  29. path('partyApp/', include('partyApp.urls')),
  30. path('admissionsAndEmploymentApp/', include('admissionsAndEmploymentApp.urls')),
  31. ]