I retrieve a timefield from my MS SQL database, for example \'10:30:00\' (hh:mm:ss). I try to render this in a twig template, but I only want to display the \'10:30\' portion (h
You can use the Twig filter date like this :
{{ object.date|date('H:i:s') }}
As seen on this thread : How to render a DateTime object in a Twig template