File: urls.py

package info (click to toggle)
python-django-threadedcomments 0.5.3-4
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 804 kB
  • sloc: python: 2,521; makefile: 13
file content (7 lines) | stat: -rw-r--r-- 252 bytes parent folder | download
1
2
3
4
5
6
7
from django.conf.urls.defaults import patterns, include

urlpatterns = patterns('',
     (r'^blog/$', 'blog.views.latest_post'),
     (r'^admin/', include('django.contrib.admin.urls')),
     (r'^threadedcomments/', include('threadedcomments.urls')),
)