listviewの格納場所にについて聞きたいです
自分はいつもcontext_object_name ='なんか'で指定していますがそれを指定せず下記のような場合
htmlのfor文で一つ一つ取り出す際の格納場所はどこなのでしょうか? object_listでしょうか?
ググっていて格納場所というのが理解できません.....
python
1 ------urls.py----- 2path('list/', ListView.as_view(), name="list"),
python
1 ------views.py----- 2 3class ListView(ListView): 4 model = Homo 5 template_name = 'list.html' 6 7 def get_queryset(self): 8 diaries = Homo.objects.all().order_by('-created_at') 9 return diaries 10
python
1 ----list.html----- 2 3 {% for homo in ???? %} 4 5 <h1>{{ homo.title }}</h1> 6 <h2>{{ homo.content }}</h2> 7 {% endfor %} 8 9
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2020/05/08 09:51
2020/05/08 09:53