1
0
mirror of https://github.com/django/django.git synced 2024-12-29 12:36:08 +00:00
django/tests/flatpages_tests/absolute_urls.py

7 lines
154 B
Python
Raw Normal View History

from django.contrib.flatpages import views
from django.urls import path
urlpatterns = [
path("flatpage/", views.flatpage, {"url": "/hardcoded/"}),
]