Files @ 541f423a3d1c
Branch filter:

Location: website/conservancy/fossy/urls.py - annotation

bsturmfels
Add transparent background to T-shirt image
1
2
3
4
5
6
7
8
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'),
]