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
You can at least modify the output in the __str__ method on the model by using datetime.time.isoformat(timespec='minutes'), like this:
__str__
datetime.time.isoformat(timespec='minutes')
def __str__(self): return self.value.isoformat(timespec='minutes')
Now the value is showing as HH:MM in admin pages.