[ create a new paste ] login | about

Link: http://codepad.org/sFe3CJtg    [ raw code | fork ]

Python, pasted on Sep 1:
from django.conf.urls.defaults import patterns, include, url
from django.conf import settings

# Uncomment the next two lines to enable the admin:
from django.contrib import admin
admin.autodiscover()

urlpatterns = patterns('',
    # Examples:
    # url(r'^$', 'djangosandbox01.views.home', name='home'),
    # url(r'^djangosandbox01/', include('djangosandbox01.foo.urls')),
    
    url(r'^media/(?P<path>.*)$', 'django.views.static.serve', {'document_root': settings.MEDIA_ROOT }),
 
    # Uncomment the admin/doc line below to enable admin documentation:
    url(r'^admin/doc/', include('django.contrib.admindocs.urls')),

    # Uncomment the next line to enable the admin:
    url(r'^admin/', include(admin.site.urls)),
	
    url(r'^portfolio/', include('portfolio.urls')),
)


Create a new paste based on this one


Comments: