2020-02-24 22:28:52 +00:00
|
|
|
from django.views.generic import DetailView, ListView
|
2020-02-13 21:07:28 +00:00
|
|
|
|
|
|
|
from .models import Wish
|
|
|
|
|
|
|
|
|
|
|
|
class WishListView(ListView):
|
|
|
|
model = Wish
|
|
|
|
template_name = "wish_list.html"
|
|
|
|
|
|
|
|
|
|
|
|
class WishDetailView(DetailView):
|
|
|
|
model = Wish
|
|
|
|
template_name = "wish_detail.html"
|
|
|
|
slug_url_kwarg = "wish_slug"
|