mirror of
https://github.com/Hopiu/django.git
synced 2026-03-20 16:00:27 +00:00
9 lines
258 B
Python
9 lines
258 B
Python
from django.conf.urls.i18n import i18n_patterns
|
|
from django.urls import path
|
|
from django.views.generic import TemplateView
|
|
|
|
view = TemplateView.as_view(template_name='dummy.html')
|
|
|
|
urlpatterns = i18n_patterns(
|
|
path('prefixed/', view, name='prefixed'),
|
|
)
|