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 226B

12345678
  1. from django.conf.urls import url
  2. from taggit_templatetags2.views import TagCanvasListView
  3. urlpatterns = [
  4. url(r'^tag-list/(?P<tag_id>.*)/(?P<tag_slug>.*)/',
  5. TagCanvasListView.as_view(), name='tagcanvas-list'),
  6. ]