This repository has been archived on 2025-02-01. You can view files and clone it, but cannot push or open issues or pull requests.
django-stock/tea/views.py

14 lines
346 B
Python

from django.http import HttpResponse
from django.shortcuts import render, get_object_or_404
from django.views import generic
from .models import Tea, Company
class IndexView(generic.ListView):
model = Company
template_name = 'tea/index.html'
class DetailView(generic.DetailView):
model = Tea
template_name = 'tea/detail.html'