Ben Sturmfels
05323a307d
Added `on_delete` attributes, updated ForceCanonicalHostnameMiddleware for compatibility and added Dockerfile for Bullseye.
8 lines
139 B
Python
8 lines
139 B
Python
from django.conf.urls import url
|
|
|
|
from . import views
|
|
|
|
app_name = "ccs_upload"
|
|
urlpatterns = [
|
|
url(r'^$', views.upload, name='form')
|
|
]
|