반응형
첫번째 장고 앱 작성하기, part 4
간단한 폼 만들기
- polls/detail.html을 변경해보면
polls/urls.py
path('<int:question_id>/vote/', views.vote, name='vote'),
- polls/views.py
- polls/templates/polls/results.html
Generic View 사용하기
더욱더 간결한 코드를 작성하기 위해서 URLconf 수정
조회수 수정
- index, detail, results 뷰를 제거하고 장고의 일반적인 뷰를 사용.
ListView와 DetailView의 두 가지 제네릭 뷰를 사용.
참고
- https://docs.djangoproject.com/ko/2.0/intro/tutorial04/
반응형
'Programming > Web' 카테고리의 다른 글
[Django] 07.스타일시트와 이미지 추가 (0) | 2017.12.18 |
---|---|
[Django] 06.자동화된 테스트 (0) | 2017.12.18 |
[Django] 03.데이터베이스 연동하기(migration, model 생성) (0) | 2017.12.17 |
[Django] 04. 어플리케이션 View 만들기 (0) | 2017.12.17 |
[Django] 02.프로젝트 만들기 및 시작하기 (간단한 설문조사 어플리케이션 만들기) (0) | 2017.12.17 |