Django - read more 버튼 동작하게 하기, post_detail 페이지 개선하기
read more 버튼 동작하게 하기, post_detail 페이지 개선하기버튼 활성화 하기id 추가해주기 blog/templates/blog/post_list.html <!-- 버튼이 눌렸을 때 이동할 url과 button을 쉽게 찾기 위한 id를 추가한다. --><a href="{{ p.get_absolute_url }}" class="btn btn-primary" id="read-more-post-{{ p.pk }}">Read More→</a> 테스트 코드부터 작성하기 blog/tests.py # button 확인을 위한 코드post_000_read_more_button = body.find('a', id="read-more-post-{}".format(post_000.pk))self.assertEqual(post_000_read_more_button['href'], post_000.get_absolute_url()) post_detail 디자인 변경하기