feat: add shared scouting notes mvp

This commit is contained in:
bisco
2026-04-07 17:41:53 +02:00
parent 4f869c1c02
commit 4651746427
9 changed files with 176 additions and 5 deletions

View File

@ -9,5 +9,7 @@ urlpatterns = [
path("players/<int:player_id>/", views.player_detail, name="player_detail"),
path("players/<int:player_id>/favorite/", views.add_favorite, name="add_favorite"),
path("players/<int:player_id>/unfavorite/", views.remove_favorite, name="remove_favorite"),
path("players/<int:player_id>/notes/add/", views.add_note, name="add_note"),
path("players/<int:player_id>/notes/<int:note_id>/delete/", views.delete_note, name="delete_note"),
path("favorites/", views.favorites_list, name="favorites_list"),
]