File: urls.py

package info (click to toggle)
django-simple-captcha 0.6.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 656 kB
  • sloc: python: 1,661; makefile: 103; sh: 21
file content (10 lines) | stat: -rw-r--r-- 186 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
from django.urls import include
from django.urls import re_path as url

from .views import home


urlpatterns = [
    url(r"^$", home),
    url(r"^captcha/", include("captcha.urls")),
]