Files @ 6c52f28d6a3c
Branch filter:

Location: website/conservancy/ccs_upload/urls.py

Denver Gingerich
Use The Source: add initial CCIRT text
1
2
3
4
5
6
7
8
from django.urls import path

from . import views

app_name = "ccs_upload"
urlpatterns = [
    path('', views.upload, name='form')
]