Skip to content

Commit

Permalink
Added track names to talk detail view
Browse files Browse the repository at this point in the history
  • Loading branch information
warren5236 committed Sep 29, 2023
1 parent d2f8cd5 commit 1eae79c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions app/templates/Talk/_common/talk_header.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,15 @@
<p>
{{ talk.getType }} in {{ talk.language }} at <a href="{{ urlFor('event-schedule', {"friendly_name": event.getUrlFriendlyName}) }}">{{ event.getName }}</a>

{% if not talk.tracks is empty %}
<br>
Track Name:
{% for tracks in talk.tracks %}
{{ tracks.track_name }}
{% if not loop.last %}, {% endif %}
{% endfor %}
{% endif %}

{% for media in talk.talk_media %}
<br>
{% if media.slides_link is defined %}
Expand Down

0 comments on commit 1eae79c

Please sign in to comment.