[widgets] Add first run at widgets
This commit is contained in:
@ -6,6 +6,26 @@ app_name = "scrobbles"
|
||||
|
||||
urlpatterns = [
|
||||
path("status/", views.ScrobbleStatusView.as_view(), name="status"),
|
||||
path(
|
||||
"widget/top-artists/<int:user_id>/",
|
||||
views.EmbeddableTopArtistWidget.as_view(),
|
||||
name="embeddable-top-artists",
|
||||
),
|
||||
path(
|
||||
"widget/top-board-games/month/<int:user_id>/",
|
||||
views.EmbeddableTopBoardGamesMonthWidget.as_view(),
|
||||
name="embeddable-top-board-games-month",
|
||||
),
|
||||
path(
|
||||
"widget/top-board-games/week/<int:user_id>/",
|
||||
views.EmbeddableTopBoardGamesWeekWidget.as_view(),
|
||||
name="embeddable-top-board-games-week",
|
||||
),
|
||||
path(
|
||||
"widget/top-board-games/year/<int:user_id>/",
|
||||
views.EmbeddableTopBoardGamesYearWidget.as_view(),
|
||||
name="embeddable-top-board-games-year",
|
||||
),
|
||||
path(
|
||||
"manual/lookup/",
|
||||
views.ManualScrobbleView.as_view(),
|
||||
|
||||
Reference in New Issue
Block a user