10 lines
245 B
Python
10 lines
245 B
Python
from django.urls import path
|
|
|
|
from frontend.views import IndexView, change_language
|
|
|
|
app_name = "frontend"
|
|
|
|
urlpatterns = [
|
|
path('', IndexView.as_view(), name="index"),
|
|
path('change_language/', change_language, name="change_language")
|
|
]
|