Skip to content

Commit

Permalink
TMS-1013: Add event weekly entry dates to event partial (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
eebbi authored Mar 26, 2024
1 parent a52228d commit 16ffb7a
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [1.2.3] - 2024-03-26

- TMS-914: Change anchor-link blocks border-color
- TMS-1013: Add event weekly entry dates to event partial

## [1.2.2] - 2024-03-18

Expand Down
18 changes: 14 additions & 4 deletions partials/views/single-dynamic-event/single-dynamic-event-info.dust
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,21 @@
{>"views/single-dynamic-event/single-dynamic-event-group-title" title=event.normalized.date_title template_classes=template_classes.info_group_title icon="date" /}

<div class="info-group__description has-text-small has-text-small pt-1 pr-8 pb-4 pl-9">
{#event.normalized.dates}
<div>
{date|html}
</div>
{?event.normalized.dates}
{#event.normalized.dates}
<div>
{date|html}
</div>
{/event.normalized.dates}
{/event.normalized.dates}

{?event.normalized.entries}
{#event.normalized.entries}
<div>
{date|attr}
</div>
{/event.normalized.entries}
{/event.normalized.entries}
</div>
</div>
{/event.normalized.date}
Expand Down

0 comments on commit 16ffb7a

Please sign in to comment.