Skip to content

Commit

Permalink
feat: add shorthand link for downloads/latest/ (#2570)
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobCoffee authored Oct 7, 2024
1 parent ae76ce1 commit ab7779f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions downloads/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
urlpatterns = [
re_path(r'latest/python2/?$', views.DownloadLatestPython2.as_view(), name='download_latest_python2'),
re_path(r'latest/python3/?$', views.DownloadLatestPython3.as_view(), name='download_latest_python3'),
re_path(r'latest/?$', views.DownloadLatestPython3.as_view(), name='download_latest_python3'),
path('operating-systems/', views.DownloadFullOSList.as_view(), name='download_full_os_list'),
path('release/<slug:release_slug>/', views.DownloadReleaseDetail.as_view(), name='download_release_detail'),
path('<slug:slug>/', views.DownloadOSList.as_view(), name='download_os_list'),
Expand Down

0 comments on commit ab7779f

Please sign in to comment.