Skip to content

Commit

Permalink
Merge pull request #916 from warren5236/add-track-name-to-talk-detail…
Browse files Browse the repository at this point in the history
…-view

Added track names to talk detail view
  • Loading branch information
iansltx authored Apr 24, 2024
2 parents 0f1b859 + 1eae79c commit d0c00c0
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 d0c00c0

Please sign in to comment.