10 lines
176 B
Python
10 lines
176 B
Python
from django.urls import path
|
|
|
|
from .views import CompetitionsHomeView
|
|
|
|
app_name = "competitions"
|
|
|
|
urlpatterns = [
|
|
path("", CompetitionsHomeView.as_view(), name="index"),
|
|
]
|