I hope this is the right place to post this. I'm not sure if it's a templating thing or what.
Anyway...
the Diary module displays the Start and End dates for every event.
I would like to make it so that if the start and end dates match, then only one date is displayed.
I have changed the template thus:
.
.
.
<p class="Duration">
<% if Start = End %>
$Start
<% else %>
$Start.Nice till $End.Nice
<% end_if %>
<br/>
From $StartTime.Nice to $EndTime.Nice
<br/>
at $Location
</p>
.
.
.
but it *always* goes to $Start.Nice till $End.Nice, even when I've tried changing the condition to <% if Start = Start %>
If I try to qualify the variables somewhat, by saying something like <% if Start.Nice = End.Nice %> or whatever else, I get the "unexpected '}' in template" error.
What am I doing wrong and how can I fix it?