📜  django admin.py 日期格式 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:00.386000             🧑  作者: Mango

代码示例1
def time_seconds(self, obj):
        return obj.timefield.strftime("%d %b %Y %H:%M:%S")

    time_seconds.short_description = 'Precise Time'    

    list_display = ('id', 'time_seconds', )