python - Formating Django TimeField in a Django view -


how format timefield in django view?

currently in django html template can like: {{movie.start_time|time:"g:ia"|lower}}

how can equivalent of above in django view?

use python strftime() function. https://docs.python.org/2/library/time.html#time.strftime


Comments