폼처리: 1개의 글
[Django] 05.간단한 폼처리와 소스코드 줄이기
첫번째 장고 앱 작성하기, part 4 간단한 폼 만들기 polls/detail.html을 변경해보면 {{ question.question_text }} {% if error_message %}{{ error_message }}{% endif %} {% csrf_token %} {% for choice in question.choice_set.all %} {{ choice.choice_text }} {% endfor %} polls/urls.py path('/vote/', views.vote, name='vote'), polls/views.py from django.shortcuts import get_object_or_404, render from django.http import HttpRespons..
Python/Django
2021. 4. 29. 02:43