Return to Snippet

Revision: 39194
at January 14, 2011 12:02 by Affix


Initial Code
from django.conf.urls.defaults import *

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

urlpatterns = patterns('',

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

Initial URL
http://affix.me

Initial Description


Initial Title
Django tut Blog urls.py 1

Initial Tags
django

Initial Language
Python