This commit is contained in:
Michael DeHaan
2013-02-28 09:10:20 -05:00
commit 853021a11e
4 changed files with 123 additions and 0 deletions

16
acom/urls.py Normal file
View File

@@ -0,0 +1,16 @@
from django.conf.urls.defaults import *
# Uncomment the next two lines to enable the admin:
# from django.contrib import admin
# admin.autodiscover()
urlpatterns = patterns('',
# Example:
# (r'^acom/', include('acom.foo.urls')),
# Uncomment the admin/doc line below to enable admin documentation:
# (r'^admin/doc/', include('django.contrib.admindocs.urls')),
# Uncomment the next line to enable the admin:
# (r'^admin/', include(admin.site.urls)),
)