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.
PloneFormGen メーラー テンプレートで、ローカライズされた日付に加えて ISO 日付 (2010-01-01 00:00:00) を取得するにはどうすればよいですか?
現在の日付/時刻、またはフォームから送信された日付/時刻のどちらが必要ですか?
いずれにしても、Zope DateTime インスタンスがある場合は、次のような ISO 表現を取得できます。
>>> mydate.ISO()
UTC が必要な場合は、簡単に変換できます。
>>> mydate.toZone('UTC').ISO()