Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下の行を指定して与えたテンプレートの template.html: date_edit には現在の時刻が含まれています。常に 0 分前が表示されます。どうすればできますか?
{{date_edit|timesince}} ago
date_edit が現在の時刻を格納している場合、0 分を表示するのは正常です。最終編集時刻を保存する必要があります。auto_now=Trueこれは、モデルの DateTimeField 属性にパラメーターを追加することで実現できます。このように、モデルを保存した場合にのみ更新されます。
auto_now=True