クラスベースビューを使う時に、どうすればユーザー名をhmtlに渡すことができるのでしょうか?
{{user.get_username}}や、{{user.username}}としても表示することができません。
views.py
class TodoList(ListView): template_name = 'list.html' model = TodoModel
list.html
<p style="font-weight:bold;">:{{ user.get_username }}</p>
どなたかおしえてください!
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。