14 lines
247 B
Python
14 lines
247 B
Python
from django.views.generic import ListView, DetailView
|
|
|
|
from ..ingredients.models import Ingredient
|
|
from .models import Brew
|
|
|
|
# Create your views here.
|
|
|
|
|
|
class BrewListView(ListView):
|
|
model = Brew
|
|
|
|
|
|
class BrewView(DetailView):
|
|
model = Brew
|