1234567891011121314151617181920212223242526 |
- # Copyright 2014-2016 The Distro Tracker Developers
- # See the COPYRIGHT file at the top-level directory of this distribution and
- # at http://deb.li/DTAuthors
- #
- # This file is part of Distro Tracker. It is subject to the license terms
- # in the LICENSE file found in the top-level directory of this
- # distribution and at http://deb.li/DTLicense. No part of Distro Tracker,
- # including this file, may be copied, modified, propagated, or distributed
- # except according to the terms contained in the LICENSE file.
- from __future__ import unicode_literals
- from django.conf.urls import url
- from .views import index, comparison
- urlpatterns = [
- url('^derivative/$', index, name='dtracker-derivative-index'),
- url('^derivative/(?P<distribution>[^/]+)/$', comparison,
- name='dtracker-derivative-comparison'),
- ]
- frontpagelinks = [
- ('dtracker-derivative-index', 'Data about this Debian derivative'),
- ]
|