Skip to content

Instantly share code, notes, and snippets.

@dvl
Created May 4, 2015 16:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dvl/0bed149bee4556b32d7a to your computer and use it in GitHub Desktop.
Save dvl/0bed149bee4556b32d7a to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
from django.conf.urls import include, url
from django.contrib import admin
# Text to put at the end of each page's <title>.
admin.site.site_title = 'Administração Infobusca'
# Text to put in each page's <h1>.
admin.site.site_header = 'Infobusca'
# Text to put at the top of the admin index page.
admin.site.index_title = 'Painel de Controle'
urlpatterns = [
url(r'', include('infobusca.home.urls', namespace='home')),
url(r'^produtos/', include('infobusca.produtos.urls', namespace='produtos')),
url(r'^admin/', include(admin.site.urls)),
url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment