Format and color JSON in all views

This commit is contained in:
Joakim Hellsén 2026-01-07 21:06:50 +01:00
commit bd16fefd08
No known key found for this signature in database
4 changed files with 38 additions and 15 deletions

View file

@ -23,7 +23,7 @@ urlpatterns: list[URLPattern] = [
path("games/", views.GamesGridView.as_view(), name="game_list"),
path("games/list/", views.GamesListView.as_view(), name="game_list_simple"),
path("games/<str:twitch_id>/", views.GameDetailView.as_view(), name="game_detail"),
path("organizations/", views.OrgListView.as_view(), name="org_list"),
path("organizations/", views.org_list_view, name="org_list"),
path("organizations/<str:twitch_id>/", views.organization_detail_view, name="organization_detail"),
path("channels/", views.ChannelListView.as_view(), name="channel_list"),
path("channels/<str:twitch_id>/", views.ChannelDetailView.as_view(), name="channel_detail"),