File: urls.py

package info (click to toggle)
django-iconify 0.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 168 kB
  • sloc: python: 462; makefile: 9
file content (7 lines) | stat: -rw-r--r-- 223 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
from django.views.generic import TemplateView
from django.urls import include, path

urlpatterns = [
    path("icons/", include("dj_iconify.urls")),
    path("test.html", TemplateView.as_view(template_name="test.html")),
]