일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 이분그래프
- 백준
- string 메소드
- 프레임워크와 라이브러리의 차이
- c++
- Django Nodejs 차이점
- UI한글변경
- 엑셀
- 알고리즘 공부방법
- double ended queue
- 입출력 패턴
- scanf
- 시간복잡도
- 연결요소
- 매크로
- getline
- vscode
- EOF
- 입/출력
- 표준 입출력
- 자료구조
- Django란
- iOS14
- string 함수
- 구조체와 클래스의 공통점 및 차이점
- 장고란
- correlation coefficient
- Django의 편의성
- k-eta
- 2557
Archives
- Today
- Total
Storage Gonie
32. (app2) 투표결과 페이지 만들기 (result메소드 수정) 본문
반응형
1. views.py의 results메소드 수정
- detail.html -> vote메소드 -> result메소드 -> results.html 대략 이 순서로 돌아감
def results(request, question_id):
question = get_object_or_404(Question, qk = question_id)
return render(request, 'polls/results.html', {'question': question})
2. templates/polls/results.html 생성
<h1>{{question.question_text}}</h1>
<ul>
{% for choice in question.choice_set.all %}
<li>{{choice.choice_text}} --- {{choice.votes}} 득표</li>
{% endfor %}
</ul>
<a href="{% url 'polls:detail' question.id %}">다시 투표하기</a>
반응형
'웹개발 > Django 웹서비스 개발(인프런)' 카테고리의 다른 글
34. (app2) Django 버그 수정 및 테스트 자동화하기(tests.py이용) (0) | 2019.02.20 |
---|---|
33. (app2) generic view를 적용한 Class-based views 방식의 URL 라우팅 (0) | 2019.02.19 |
31. (app2) POST 처리 (투표결과 DB반영하기) (0) | 2019.02.19 |
30. (app2) 커스텀 From 직접 만들기(detail.html수정) (0) | 2019.02.19 |
29. (app2) 하드코딩 URL 제거(index.html 수정, polls.urls.py 수정) (0) | 2019.02.19 |
Comments