[#if tripsreport.dateIntervalStart??] [#if tripsreport.dateIntervalEnd??] ${tripsreport.dateIntervalStart?date} - ${tripsreport.dateIntervalEnd?date} [#else] After ${tripsreport.dateIntervalStart?date} [/#if] [#else] [#if tripsreport.dateIntervalEnd??] Before ${tripsreport.dateIntervalEnd?date} [#else] All dates [/#if] [/#if]
[#if tripsreport.trips?size == 0]
There is no data available for the selected report settings.
[#else]
Date |
Client |
Project |
Description |
Distance |
Total |
---|---|---|---|---|---|
[#list tripsreport.trips?sort_by("startTime") as trip] | |||||
${trip.startTime?date} |
${trip.project.client.name} |
${trip.project.name} |
${trip.description} |
${trip.distance} |
${trip.total} |
[/#list] | |||||
Total |
${tripsreport.calculateDistance(tripsreport.trips)} |
${tripsreport.calculateTotal(tripsreport.trips)} |
[/#if]