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.

19 lines
572 B

# This file is part of dnmapper, an AS--level mapping tool
# Licensed under GNU General Public License v3 or later
# Written by Sebastian Lohff (seba@someserver.de)
from django.conf.urls import include, url
9 years ago
from django.contrib import admin
9 years ago
from django.views.generic import RedirectView
import bgpdata.urls
9 years ago
urlpatterns = (
9 years ago
# Examples:
# url(r'^$', 'dnmapper.views.home', name='home'),
# url(r'^blog/', include('blog.urls')),
9 years ago
url(r'^$', RedirectView.as_view(url='/map/')),
url(r'^map/', include(bgpdata.urls)),
9 years ago
9 years ago
url(r'^admin/', include(admin.site.urls)),
9 years ago
)