Skip to content

Instantly share code, notes, and snippets.

@vickoman
Created February 6, 2014 18:40
Show Gist options
  • Save vickoman/8850072 to your computer and use it in GitHub Desktop.
Save vickoman/8850072 to your computer and use it in GitHub Desktop.
from django.conf.urls import patterns, include, url
from django.conf import settings
from django.contrib import admin
admin.autodiscover()
urlpatterns = patterns('',
url(r'^admin/', include(admin.site.urls)),
url(r'^', include('misitio.apps.main.urls')),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment