| author | ymh <ymh.work@gmail.com> |
| Tue, 27 Aug 2013 11:01:32 +0200 | |
| changeset 0 | 81e7900b06a7 |
| child 1 | d184767fdd52 |
| permissions | -rw-r--r-- |
from django.conf.urls import patterns, include, url from django.contrib import admin admin.autodiscover() urlpatterns = patterns('', # Examples: # url(r'^$', 'p4l.views.home', name='home'), # url(r'^p4l/', include('p4l.foo.urls')), # Uncomment the admin/doc line below to enable admin documentation: # url(r'^admin/doc/', include('django.contrib.admindocs.urls')), url(r'^admin/', include(admin.site.urls)), )