bornhack-website/src/bar/views.py

10 lines
219 B
Python
Raw Normal View History

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