12 lines
230 B
Python
12 lines
230 B
Python
from foods.models import Food
|
|
|
|
from scrobbles.views import ScrobbleableListView, ScrobbleableDetailView
|
|
|
|
|
|
class FoodListView(ScrobbleableListView):
|
|
model = Food
|
|
|
|
|
|
class FoodDetailView(ScrobbleableDetailView):
|
|
model = Food
|