質問編集履歴

1

少し解決に向けて進んだ点を追記

2021/08/27 19:43

投稿

hiroikawa55
hiroikawa55

スコア26

test CHANGED
File without changes
test CHANGED
@@ -87,3 +87,25 @@
87
87
 
88
88
 
89
89
  そもそもの理解が間違っている可能性もありますが、ご教示いただけると幸いに存じます。
90
+
91
+
92
+
93
+ 追記: 下記のページで、Foreignkeyで結ばれたモデルのフィールドの値を引っ張る方法が分かりました。
94
+
95
+ https://docs.djangoproject.com/en/3.2/topics/class-based-views/generic-display/
96
+
97
+ コンテキストの追加 
98
+
99
+ def get_context_data(self, **kwargs):
100
+
101
+ # Call the base implementation first to get a context
102
+
103
+ context = super().get_context_data(**kwargs)
104
+
105
+ # Add in a QuerySet of all the books
106
+
107
+ context['book_list'] = Book.objects.all()
108
+
109
+ return context
110
+
111
+ あとは、フィルターの仕方(Detailのpkに該当する値のみでリストを作る方法)を調べ中です。