Django TimeField Model without seconds

前端 未结 7 2163
青春惊慌失措
青春惊慌失措 2021-02-08 12:48

Greetings, I am trying to implement a TimeField model which only consists of HH:MM (ie 16:46) format, I know it is possible to format a regular Python time object but I am lost

7条回答
  •  面向向阳花
    2021-02-08 13:27

    TimeField model

    in Template

    Is displayed

    {{ value|time:"H:i" }}
    


    Is not displayed

    {{ value|time:"H:M" }}
    

    Django 1.4.1

提交回复
热议问题