pdlzbs/core/urls.py

23 lines
536 B
Python

from django.urls import path
from .views import *
urlpatterns = [
path('', HomeView.as_view(), name='home'),
path('zarzad', HomeView.as_view(), name='administration'),
path('rodo', HomeView.as_view(), name='rodo'),
path('liga', HomeView.as_view(), name='league'),
path('kalendarz', HomeView.as_view(), name='calendar'),
path('grandprix', HomeView.as_view(), name='gpx'),
path('inneturnieje', HomeView.as_view(), name='others'),
path('skladki', HomeView.as_view(), name='membership'),
]
#
#
#
#
#
#
#
#