상품목록1 [view] 상품 목록 만들기 Views.py 수정 product > views.py 1 2 3 4 5 6 7 from django.shortcuts import render from django.views.generic import ListView, DetailView # Create your views here. class ProductList(ListView): model = Product template_name = 'product.html' context_object_name = 'product_list' urls 연결 fc_django > urls.py path('product/', ProductList.as_view()), 지난 글에서 설정했던 코드에서 product의 path도 추가해주세요. 1 2 3 4 5 6 7 8.. 2020. 7. 27. 이전 1 다음