from django.urls import path from .views import * urlpatterns = [ path('', HomeView.as_view(), name='homepage'), path('/wyniki', ScheduleAndResultsView.as_view(), name='schedule_and_results'), path('/rejestracja', RegistrationView.as_view(), name='registration'), path('/regulamin', RulesView.as_view(), name='rules'), path('/nagrody', FeeAndPrizesView.as_view(), name='fee_and_prizes'), path('/noclegi', AccomodationView.as_view(), name='accomodation'), path('/kontakt', ContactView.as_view(), name='contact'), ]