Hello,
I am currently building a Flow to return a list of items from a query in Azure DevOps (VSO/VSTS), which will create an HTML table from the data, then send it in an email.
The one part that I am stuck on is how to convert the date/times to something that's human-friendly. For example, from ADO, this is the format:

I can easily do the conversion to the format I want (12/20/2018 format) for one value, but I'm unsure how to do it for an entire list.
Here is what I have so far:

Here is the formateDateTime function I have in the HTML table, which works for converting the Current Time action into the correct format:
formatDateTime(body('Current_time'),'MM-dd-yyyy')
How would I run every list item through that conversion?
Thank you for your help!