File: urls.py

package info (click to toggle)
django-bleach 3.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 324 kB
  • sloc: python: 993; makefile: 137; sh: 16
file content (9 lines) | stat: -rwxr-xr-x 175 bytes parent folder | download
1
2
3
4
5
6
7
8
9
from django.urls import path

from .views import home, model_form


urlpatterns = [
    path('', home, name='home'),
    path('model_form/', model_form, name='model_form'),
]