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:
parent
379d9ce1f7
commit
f0a3b8cc79
1 changed files with 5 additions and 1 deletions
|
@ -60,7 +60,11 @@
|
|||
|
||||
<#local interval>
|
||||
<#if start?? && end??>
|
||||
<#if start == end>
|
||||
${start}
|
||||
<#else>
|
||||
${start} - ${end}
|
||||
</#if>
|
||||
<#elseif start??>
|
||||
${start} -
|
||||
<#elseif end??>
|
||||
|
|
Loading…
Add table
Reference in a new issue