mirror of
https://github.com/django/django.git
synced 2024-11-25 07:59:34 +01:00
11 lines
265 B
Python
11 lines
265 B
Python
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"),
|
|
]
|