프론트엔드1 [view] 상품 등록하기, 상세 보기 상품 등록 html 생성 우선, product앱의 templates 폴더에 상품 등록 html을 만들어 주세요. forms.py 생성 product 앱에 forms.py도 생성해 주세요!! forms.py를 생성하셨으면 코드를 아래와 같이 입력해주세요. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 from django import forms from .models import Product class RegisterForm(forms.Form): name = forms.CharField( error_messages={ 'required': '상품명.. 2020. 7. 30. 이전 1 다음