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

123456789101112
  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. from django.conf.urls import url
  4. from hitcount.views import HitCountJSONView
  5. app_name = 'hitcount'
  6. urlpatterns = [
  7. url(r'^hit/ajax/$', HitCountJSONView.as_view(), name='hit_ajax'),
  8. ]