tracker_urls.py 911 B

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