fossy: Disable community track proposal form

Tracks are selected for this year, so no need for this to collect spam for the
next 9 months.
This commit is contained in:
Ben Sturmfels 2025-03-05 12:25:11 +11:00
parent 4d1fd9e878
commit 2d0cc8abe8
Signed by: bsturmfels
GPG key ID: 023C05E2C9C068F0

View file

@ -3,6 +3,6 @@ from django.urls import path
from .views import CommunityTrackProposalCreateView, CommunityTrackProposalThanksView
urlpatterns = [
path('community-tracks/', CommunityTrackProposalCreateView.as_view(), name='fossy-add'),
path('<uuid:pk>/', CommunityTrackProposalThanksView.as_view(), name='fossy-thanks'),
# path('community-tracks/', CommunityTrackProposalCreateView.as_view(), name='fossy-add'),
# path('<uuid:pk>/', CommunityTrackProposalThanksView.as_view(), name='fossy-thanks'),
]