게시판 게시물에 작성자를 표시하는 것을 시도
template/pybo/question_list.html 수정
...
<thead class="text-center table-dark">
<tr>
<th>번호</th>
<th style="width:50%">제목</th>
<th>작성자</th>
<th>작성일시</th>
...
...
</td>
<td>{{ question.author.username }}</td>
<td>{{ question.create_date }}</td>
...
테이블 속성 값에 작성자 추가
작성자 표시 확인
template/pybo/question_detail.html 수정
질문 영역에 작성날짜와 작성자 표시
<div class="badge bg-light text-dark text-start p-2">
<div class="mb-2">{{ question.author.username }}</div>
<div>{{ question.create_date }}</div>
답변 영역에 작성날짜와 작성자 표시
<div class="badge bg-light text-dark text-start p-2">
<div class="mb-2">{{ answer.author.username }}</div>
<div>{{ answer.create_date }}</div>
작성자 표시 확인