Building a Django Web App – Django III > User-submitted content

Django III에서 다루게 될 내용은 다음과 같습니다.

4-1 Django custom user profile

4-2 User-submitted content

4-3 Finishing touches


4-2 User-submitted content

(1) Creating a vote model

Vote model을 models.py에 추가

다음과 같이 코드를 추가합니다.

mysite > main > models.py

 

Migrations 수행

다음 명령을 수행합니다.

>python manage.py makemigrations
>python manage.py migrate

 

Vote model을 폼에 연결

다음과 같이 코드를 추가합니다.

mysite > main > forms.py

 

VoteForm을 product 함수에 추가

다음과 같이 코드를 추가합니다.

mysite > main > views.py

 

(2) Adding the vote form to the products page

Bootstrap collapse를 product.html에 추가

다음과 같이 코드를 추가합니다.

mysite > main > templates > main > products.html

 

script를 product.html에 추가

다음과 같이 코드를 추가합니다.

mysite > main > templates > main > products.html

 

style를 products.html에 추가

 

브라우저에서 확인해 봅니다.

 

(3) Handling the vote form submission

views.py에 product 기능 업데이트

다음과 같이 코드를 추가합니다.

mysite > main > views.py

 

브라우저에서 확인해 봅니다.

 

(4) Displaying the product scores

models.py에 Product model 업데이트

다음과 같이 코드를 추가합니다.

mysite > main > models.py

 

Function을 Vote 모델에 추가

다음과 같이 코드를 추가합니다.

mysite > main > models.py

 

Migrations 수행

다음 명령을 수행합니다.

>python manage.py makemigrations
>python manage.py migrate

 

views.py에 products view 업데이트

다음과 같이 코드를 추가합니다.

mysite > main > views.py

 

products.html에서 products에 user score 추가

다음과 같이 코드를 추가합니다.

mysite > main > views.py

 

home.html에서 products에 user score 추가

mysite > main > templates > main > home.html

 

브라우저에서 확인해 봅니다.

 

브라우저에서 확인해 봅니다.

Leave a Reply

Your email address will not be published. Required fields are marked *

인기 글

Ubuntu 22.04 LTS에 Python 3.8 or 3.9 설치 방법
서버 : Vultr 클라우드OS: Ubuntu 22.04 LTS사용자 계정 생성하여 설치 진행함1. Start with the system updatesudo apt update...
오라클 클라우드 OCI 가입 드디어 성공 했습니다 (상세 후기)
2023년 2월 16일에 ‘오라클 클라우드 지급 검증 실패 글‘을 남긴 적이 있습니다.그 때 검색을 통해 해결 방법을 찾아 보았고, 당시 성공했던 분들의...
자동화설비 구조 및 데이터PC 역할
자동화설비에 사용되는 하드웨어는 다음과같습니다.PLC : PLC는 자동화 설비의 제어를 담당하는 핵심 장치로, 프로그래밍을 통해 다양한 장비와 프로세스를 제어할 수 있습니다....
자동화설비 데이터PC 환경 설정
파이썬 3.11.0환경변수 설정파이참 커뮤니티 에디션 다운로드프로젝트 필수 라이브러리 다운로드QT5 환경 변수 추가PostgreSQL...
BCT AI Chatbot 정식 버전 출시에 앞서
워드프레스 기반의 인공지능 대화형 AI챗봇 개발을 진행하면서 여러 시행착오를 해 왔는데, 다양한 피드백을 거쳐 현재 정리된 (BCT AI Chatbot 정식 버전 출시에 앞서) 해결해야...