Skip to content

Commit

Permalink
enabling public results back
Browse files Browse the repository at this point in the history
  • Loading branch information
michalmasrna1 committed May 31, 2024
1 parent 6abf9cd commit a32587f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions competition/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
path('<int:pk>/results/',
nonstaff_redirect_to_public_results(ResultsView.as_view()), name='results'),
path('priebezne-vysledky',
nonstaff_redirect_to_public_results(LatestPublicResultsView.as_view()), name='public-results-latest'),
LatestPublicResultsView.as_view(), name='public-results-latest'),
path('<int:pk>/priebezne-vysledky',
nonstaff_redirect_to_public_results(PublicResultsView.as_view()), name='public-results'),
PublicResultsView.as_view(), name='public-results'),
path('<int:pk>/csvresults/',
nonstaff_redirect_to_public_results(CSVResultsView.as_view()), name='csv_results'),
path('<int:pk>/statistics/',
Expand Down

0 comments on commit a32587f

Please sign in to comment.