views.py 442 B

1234567891011121314151617
  1. from videogames.models import VideoGame, VideoGamePlatform
  2. from scrobbles.views import ScrobbleImportListView, ScrobbleableDetailView
  3. class VideoGameListView(ScrobbleImportListView):
  4. model = VideoGame
  5. paginate_by = 20
  6. class VideoGameDetailView(ScrobbleableDetailView):
  7. model = VideoGame
  8. slug_field = "uuid"
  9. class VideoGamePlatformDetailView(ScrobbleableDetailView):
  10. model = VideoGamePlatform
  11. slug_field = "uuid"