fe4bc3b1186dfa5f4d3993eb3a24fc6f04a82005
[climbing.kerkeslager.com] / src / nutrition / views.py
1 from django.views.generic.list import ListView
2
3 from . import models
4
5 class FoodListView(ListView):
6     model = models.Food
7
8 index = FoodListView.as_view()