diff --git a/competition/urls.py b/competition/urls.py index d865277..370d375 100644 --- a/competition/urls.py +++ b/competition/urls.py @@ -22,9 +22,9 @@ path('/results/', nonstaff_redirect_to_public_results(ResultsView.as_view()), name='results'), path('priebezne-vysledky', - LatestPublicResultsView.as_view(), name='public-results-latest'), + nonstaff_redirect_to_public_results(LatestPublicResultsView.as_view()), name='public-results-latest'), path('/priebezne-vysledky', - PublicResultsView.as_view(), name='public-results'), + nonstaff_redirect_to_public_results(PublicResultsView.as_view()), name='public-results'), path('/csvresults/', nonstaff_redirect_to_public_results(CSVResultsView.as_view()), name='csv_results'), path('/statistics/',