1 2 3 4 5 6 7 8 9 10
# Copyright 1998-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 from django.conf.urls import url from . import views urlpatterns = [ url(r'^home/$', views.home), url(r'^packages/$', views.packages), ]