흰 스타렉스에서 내가 내리지

게시글 detail 페이지 구현 본문

Django

게시글 detail 페이지 구현

주씨. 2022. 6. 8. 00:20
728x90

urls.py

path('detail/<int:post_id>/', views.detail, name="detail"),

 

 

index.html

{% for post in posts %}
  <a href="{% url 'detail' post.id %}">
    <h3>제목 :
      {{ post.title }}
    </h3>
  </a>
  <h4>작성 날짜 :
    {{ post.date }}
  </h4>
{% endfor %}

 

 

pk값을 이용해 특정 모델 객체 하나만 가져오기 : get_object_or_404()

 

views.py

def detail(request, post_id):
    blog_detail = get_object_or_404(Blog, pk=post_id)
    return render(request, 'detail.html', {'blog_detail':blog_detail})

 

 

detail.html

<h1>제목</h1>
{{ blog_detail.title }}

<h2>날짜</h2>
{{ blog_deatil.date }}

<h3>본문</h3>
{{ blog_detail.body }}

 

'Django' 카테고리의 다른 글

댓글  (0) 2022.06.08
사용자가 media 를 업로드 할 수 있도록  (0) 2022.06.08
DB에 담긴 데이터들을 html에 띄워보자  (0) 2022.06.07
modelForm  (0) 2022.06.07
django form 이용하기  (0) 2022.06.07