mirror of
https://github.com/Hopiu/django.git
synced 2026-03-19 15:30:24 +00:00
11 lines
346 B
Python
11 lines
346 B
Python
from django.conf.urls.i18n import i18n_patterns
|
|
from django.urls import re_path
|
|
from django.utils.translation import gettext_lazy as _
|
|
from django.views.generic import TemplateView
|
|
|
|
view = TemplateView.as_view(template_name='dummy.html')
|
|
|
|
app_name = 'account'
|
|
urlpatterns = i18n_patterns(
|
|
re_path(_(r'^register/$'), view, name='register'),
|
|
)
|