Development of an internal social media platform with personalised dashboards for students
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.3KB

12345678910111213141516171819202122232425262728293031
  1. from django.conf import settings
  2. from django.conf.urls import url
  3. from django.conf.urls import include
  4. from django.urls import path
  5. from taggit_templatetags2 import urls as taggit_templatetags2_urls
  6. from . import views
  7. import debug_toolbar
  8. urlpatterns = [
  9. url(r'^$', views.post_list, name='post_list'),
  10. url(r'^tag/(?P<slug>[-\w]+)/$', views.post_list, name='post_list_by_tag'),
  11. url(r'^taglist/$', views.tag_list, name='tag_list'),
  12. url(r'^student/', views.student_page, name='student_page'),
  13. url(r'^search/', views.blog_search_list_view, name='blog_search_list_view'),
  14. url(r'^search/result/$', views.blog_search_list_view, name='post_list_by_search'),
  15. url(r'^post/(?P<pk>\d+)/$', views.post_detail, name='post_detail'),
  16. url(r'^post/new/$', views.post_new, name='post_new'),
  17. url(r'^post/(?P<pk>\d+)/edit/$', views.post_edit, name='post_edit'),
  18. url(r'^drafts/$', views.post_draft_list, name='post_draft_list'),
  19. url(r'^post/(?P<pk>\d+)/publish/$', views.post_publish, name='post_publish'),
  20. url(r'^post/(?P<pk>\d+)/remove/$', views.post_remove, name='post_remove'),
  21. url(r'^student/(?P<slug>[-\w]+)/remove/$', views.tag_remove, name='tag_remove'),
  22. url(r'^tags/', include('taggit_templatetags2.urls')),
  23. ]
  24. if settings.DEBUG:
  25. import debug_toolbar
  26. urlpatterns += [
  27. url(r'^__debug__/', include(debug_toolbar.urls)),
  28. ]