I am able to display the time zone in HTML with the offset using the following code:
<span class="match-date">
{{match.match_date | date:'fullDate'}} at {{match.match_date | date:'shortTime'}} {{match.match_date | date:'Z'}}
</span>
which results in:
Saturday, October 22, 2016 at 5:00 PM -0500
However I would like it to be displayed with the time zone name instead of the offset to look like:
Saturday, October 22, 2016 at 5:00 PM CDT
How can I accomplish this?