davemerwin / blue-channel

A content management system developed in Django, jQuery and 960

This URL has Read+Write access

davemerwin (author)
Sat Mar 28 12:04:18 -0700 2009
commit  df716d38b76d0c2c09f4155f4655fc628dbf12ea
tree    987d1b8bff974121794bb2fcce0fe244175b1889
parent  caea8ebc685719b9514b688523dbe1166960fa29
blue-channel / bluechannel / urls.py
100644 17 lines (12 sloc) 0.487 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from django.conf.urls.defaults import *
 
from django.contrib import admin
admin.autodiscover()
 
urlpatterns = patterns('',
    # Example:
    # (r'^bluechannel/', include('bluechannel.foo.urls')),
 
    # Uncomment the admin/doc line below and add 'django.contrib.admindocs'
    # to INSTALLED_APPS to enable admin documentation:
    (r'^admin/doc/', include('django.contrib.admindocs.urls')),
 
    # Uncomment the next line to enable the admin:
    (r'^admin/(.*)', admin.site.root),
)