단일 게시글 페이지 링크 작성
# articles > templates > articles > index.html
더보기
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>Articles</h1>
<hr>
{% for article in articles %}
<p>글 번호: {{ article.pk }}</p>
<a href="{% url "articles:detail" article.pk %}">
<p>글 제목: {{ article.title }}</p>
</a>
<p>글 내용: {{ article.content }}</p>
<hr>
{% endfor %}
</body>
</html>
페이지 열어서 확인하기
python manage.py runserver
'WEB > Django prac' 카테고리의 다른 글
[Django prac][ORM with View] CRUD 구현 7 (0) | 2024.03.27 |
---|---|
[Django prac][ORM with View] CRUD 구현 6 (0) | 2024.03.27 |
[Django prac][ORM with View] CRUD 구현 4 (0) | 2024.03.27 |
[Django prac][ORM with View] CRUD 구현 3 (0) | 2024.03.27 |
[Django prac][ORM with View] CRUD 구현 2 (0) | 2024.03.27 |