BCB Bank static website
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

8 regels
177 B

  1. from django.conf.urls import include, url
  2. from django.contrib import admin
  3. urlpatterns = [
  4. url(r'^admin/', include(admin.site.urls)),
  5. url(r'', include('home.urls')),
  6. ]