1
class Passagem(models.Model):
inscricao = models.ForeignKey(Inscricao, verbose_name='inscricao', related_name='passagem',
on_delete=models.CASCADE)
hora_passagem = models.TimeField('Tempo', auto_now_add=True)
I have this table where you record hora_passagem
, who’s kind TimeField
. When displaying on the web system, it displays the following format: "14:35"
.
How do I present in this format : "14:34:58.943943"
I’m using Django 2.1.
Perfect, I managed to make it appear the way I wanted. Thank you very much!
– duardoalmeida