11 lines
229 B
Python
11 lines
229 B
Python
from moods.models import Mood
|
|
from scrobbles.views import ScrobbleableListView, ScrobbleableDetailView
|
|
|
|
|
|
class MoodListView(ScrobbleableListView):
|
|
model = Mood
|
|
|
|
|
|
class MoodDetailView(ScrobbleableDetailView):
|
|
model = Mood
|