NIHVIVO-1929 Added test for when startDate = endDate. In this case, display this as a single date instead of an interval.

This commit is contained in:
nac26 2011-01-31 05:10:52 +00:00
parent 379d9ce1f7
commit f0a3b8cc79

View file

@ -60,7 +60,11 @@
<#local interval>
<#if start?? && end??>
<#if start == end>
${start}
<#else>
${start} - ${end}
</#if>
<#elseif start??>
${start} -
<#elseif end??>