bornhack-website/src/bar/views.py

9 lines
209 B
Python
Raw Normal View History

2018-03-04 13:31:13 +00:00
from .models import ProductCategory
2017-08-26 01:48:02 +00:00
from django.views.generic import ListView
class MenuView(ListView):
model = ProductCategory
template_name = "bar_menu.html"
context_object_name = "categories"