article_url.py 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. """IBE 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.contrib.staticfiles.urls import staticfiles_urlpatterns
  17. from django.urls import path
  18. from blog import views
  19. from blog.controller import login, category, article
  20. urlpatterns = [
  21. path('new', article.new, name='article_new'),
  22. path('add_article', article.add_article),
  23. path('get_all_article', article.get_all_article),
  24. path('to_edit/<pk>', article.to_edit),
  25. path(r'<pk>.html', article.show_article),
  26. path('edit_article', article.edit_article),
  27. path('delete_article', article.delete_article),
  28. ]
  29. urlpatterns += staticfiles_urlpatterns()