Tracks are selected for this year, so no need for this to collect spam for the next 9 months.
8 lines
321 B
Python
8 lines
321 B
Python
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'),
|
|
]
|