blob: 6957abc8a451e8263f5a9123c76203990fb5ae65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
from django.shortcuts import render
from django.views.generic import ListView
from django.contrib.auth.views import LoginView
from .models import Product
class UserLoginView(LoginView):
template_name = "core/login.html"
class ProductListView(ListView):
model = Product
template_name = "core/product_list.html"
context_object_name = "products"
|