8 lines
114 B
Python
8 lines
114 B
Python
from django.urls import path
|
|
|
|
from .views import index
|
|
|
|
urlpatterns = [
|
|
path("", index, name="tmpl_index"),
|
|
]
|