장고 질문입니다..
질문 목록 화면에 정렬 조건 추가하기 에서
<div class="col-2">
<select class="form-control so">
<option value="recent" {% if so == 'recent' %}selected{% endif %}>최신순</option>
<option value="recommend" {% if so == 'recommend' %}selected{% endif %}>추천순</option>
<option value="popular" {% if so == 'popular' %}selected{% endif %}>인기순</option>
</select>
</div>
이 코드를 추가 했더니 오류가 나고, 제거하면 오류가 사라집니다...
tag start is not closed 라고 나오던데.. 무엇이 문제일까요?
정준원 님 731
M 2021년 7월 17일 5:06 오후