bornhack-website/src/bar/views.py
2018-03-04 16:00:30 +01:00

9 lines
209 B
Python

from .models import ProductCategory
from django.views.generic import ListView
class MenuView(ListView):
model = ProductCategory
template_name = "bar_menu.html"
context_object_name = "categories"