blob: 236f393dd0022ab15902f687765772a073e27453 (
plain)
1
2
3
4
5
6
7
8
9
10
|
from django.urls import path
from . import views
urlpatterns = [
# View returning a template response
path("template_response_view/", views.template_response_view),
# A view that can be hard to find...
path("snark/", views.snark, name="snark"),
]
|